On Thu, 4 Nov 2004 10:48:12 -0500, Luinrandir Hernsen
<[EMAIL PROTECTED]> wrote:
> It there a way to get the screen size info using perl?
As a CGI, not really. Try:
<blockquote><table border=3 bgcolor=#000000><tr><td>
<script>
toolkit = java . awt . Toolkit . getDefaultToolkit ();
screensize = toolkit . getScreenSize ();
document . writeln
(
"<p>" +
"You screen is " + screensize . width + " pixels wide." +
"</p>"
);
document . writeln
(
"<p>" +
"You screen is " + screensize . height + " pixels tall." +
"</p>"
);
</script>
</td></tr></table>
</blockquote>
HOWEVER, The remote client must have JS enabled and have Java installed =/
--
WC -Sx- Jones
http://youve-reached-the.endoftheinternet.org/
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>