Maximizing IE using Win32::IEAutomation

2009-01-18 Thread Collaborate
I use the following to open a webpage with the intent to have the IE window maximized. However, the window opens in a small size. my $ie = Win32::IEAutomation->new(visible=>1, maximize=>1); $ie->gotoURL('http://www.google.com', 0); Is there anything that needs to be done differently? Are there o

Re: How to display the contents of (or open) a file

2009-01-03 Thread Collaborate
On Jan 2, 2:33 am, chas.ow...@gmail.com (Chas. Owens) wrote: > On Thu, Jan 1, 2009 at 17:12, Collaborate wrote: > > On Jan 1, 3:46 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote: > >> Collaborate wrote: > >> > After wiriting the output of a Perl program to a

Re: How to display the contents of (or open) a file

2009-01-02 Thread Collaborate
On Jan 2, 2:33 am, chas.ow...@gmail.com (Chas. Owens) wrote: > On Thu, Jan 1, 2009 at 17:12, Collaborate wrote: > > On Jan 1, 3:46 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote: > >> Collaborate wrote: > >> > After wiriting the output of a Perl program to a

Re: How to display the contents of (or open) a file

2009-01-01 Thread Collaborate
On Jan 1, 3:46 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote: > Collaborate wrote: > > After wiriting the output of a Perl program to a text file, I'd like > > to immediately open (display the contents of) that text file from > > within the code so I can see what

How to display the contents of (or open) a file

2009-01-01 Thread Collaborate
After wiriting the output of a Perl program to a text file, I'd like to immediately open (display the contents of) that text file from within the code so I can see what's in the file. I am wondering if there is a simple way to accomlish this. Thanks. -- To unsubscribe, e-mail: beginners-unsubscr

Question on using Win32::IEAutomation

2008-12-26 Thread Collaborate
I have a few applications where I can effectively use the Win32:IEAutomation module. I am making sure I understand how it works and had some difficulty. For example, I am not able to print the URL of a webpage using the code below. I’d appreciate your comments on how to modify the code. #!C:\Perl

Re: copying a webpage and pasting to a text file

2008-12-24 Thread Collaborate
On Dec 23, 3:34 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote: > Collaborate wrote: > > I am wondering if there is a way to copy a webpage to a text file > > using Perl. > >      use LWP::Simple; >      my $url = 'http://www.example.com/'; >      o

copying a webpage and pasting to a text file

2008-12-23 Thread Collaborate
I am wondering if there is a way to copy a webpage to a text file using Perl. All I need is to copy as unformatted text. I would like to match certain strings on pages written in javascript and to my understanding, www::mechnize does not work for this application. -- To unsubscribe, e-mail: beg

controlling the cursor

2008-12-19 Thread Collaborate
I have an application that requires cursor/pointer control as follows: I would like to move the cursor to a specific target location on a web page and then click on a link. I would also like to be able to enter text into boxes after moving the cursor to the location of the box. I would appreciate