in reply to Re^3: The DOM of IE
in thread The DOM of IE

I found this. Now that I think about it, it can probably be adapted to perl, but it might be a bit beyond me.

Replies are listed 'Best First'.
Re^5: The DOM of IE
by Anonymous Monk on Jun 30, 2009 at 08:58 UTC
    Seems to work
    #!/usr/bin/perl -- use strict; use warnings; { use Win32::OLE qw( in ); my $shell = Win32::OLE->new('Shell.Application') or die "ERROR ", Win32::OLE->LastError(); my @ies = grep { $_->FullName =~ /iexplore\.exe$/ } in $shell->Win +dows; my $url = 'about:blank'; $url = 'about:mozilla'; # :D for my $eye (@ies) { $eye->{Offline} = 1; $eye->{Visible} = 1; $eye->Navigate( $url ); } } __END__ http://msdn.microsoft.com/en-us/library/aa752043(VS.85,loband).aspx http://en.wikipedia.org/wiki/About:_URI_scheme
      use Win32::OLE qw( with ); with( $eye , qw! Offline 1 Visible 1 ! );