Home > Archive > PERL Miscellaneous > September 2005 > Full_screen by default after loan the CGI file, anyone know
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Full_screen by default after loan the CGI file, anyone know
|
|
|
| hi, all
I have a cgi program, when it load it is small screen, till i press F11
or go to View--->Full-Screen.
Do you know any code to make the screen full screen by default when i
loan my program.
Thank very much for your helful.
Phal
| |
| Sherm Pendley 2005-09-30, 3:56 am |
| "phal" <betterdie@gmail.com> writes:
> I have a cgi program, when it load it is small screen, till i press F11
> or go to View--->Full-Screen.
>
> Do you know any code to make the screen full screen by default when i
> loan my program.
Well, first of all, I wouldn't suggest doing that unless you want to *really*
annoy your users.
Aside from that, the only way I know of to do that is with JavaScript, and
that has nothing to do with CGI or Perl. It works the same regardless of
how the page was produced, be it a plain .html file or from a CGI.
sherm--
--
Cocoa programming in Perl: http://camelbones.sourceforge.net
Hire me! My resume: http://www.dot-app.org
| |
|
| Hi Sherm
Thank you very much, I just get some information for display full
screen in Javascript,
On my point, I do a small project for student to take the exam, it is
very simple ( true false questions), and it is also similar to Cisco
exam. I don't use JavaScript, and I think it may be someone who may
know some perl package to implement full-screen without Javascript. I
try search around some usenet and perldoc, but it isn't any result.
Phal
| |
| Sherm Pendley 2005-09-30, 8:00 am |
| "phal" <betterdie@gmail.com> writes:
> exam. I don't use JavaScript, and I think it may be someone who may
> know some perl package to implement full-screen without Javascript.
No, it can't be done from a CGI, in Perl or any other language. It has
to be done within the browser, which means JavaScript.
sherm--
--
Cocoa programming in Perl: http://camelbones.sourceforge.net
Hire me! My resume: http://www.dot-app.org
| |
| Joe Smith 2005-09-30, 8:00 am |
| phal wrote:
> I don't use JavaScript, and I think it may be someone who may
> know some perl package to implement full-screen without Javascript.
It takes code running inside the client, such as JavaScript or VBscript,
to cause the browser to change its size. You won't have any luck
getting perl programs running on a server to do that.
-Joe
|
|
|
|
|