Click to See Complete Forum and Search --> : How can I make a perl produce page always be opened on top?


Mike Burdick
09-29-2004, 12:28 AM
Sometimes if I have two windows open my Perl produced page will not appear and is minimized in the start bar. How can I make sure it comes up as the active window?

Thanks,

Mike

Charles
09-29-2004, 05:43 AM
#!c:/perl/bin/perl.exe -w

use CGI::Pretty qw (:all);

print header, start_html ({title => 'Example', meta => {'Content-Script-Type' => 'text/javascript'}, onload => 'self.focus()'}), h4 ('Example'), end_html;

Mike Burdick
09-29-2004, 11:43 AM
Charles,

Thanks, that did it!

Mike