It's possible via JS. So, you can't just do, A HREF=".." TARGET="new", you
have to do A HREF="javascript:someFunc()"
I'm assumging you know how to open a window.
I found this via Deja... err, Google usenet search:
<SCRIPT language="JavaScript">
window.moveTo (0, 0);
if (document.layers) // navigator 4+
{
var deltaX = screen.availWidth - window.outerWidth;
var deltaY = screen.availHeight - window.outerHeight;
window.resizeBy (deltaX, deltaY);
}
else if (document.all) // exploder 4+
{
resizeTo(screen.availWidth,screen.availHeight);
}
</SCRIPT>
You would want to replace window. with the pointer to your new window.
=======================================================================
Raymond Camden, Principal Spectra Compliance Engineer for Allaire
Email : [EMAIL PROTECTED]
ICQ UIN : 3679482
"My ally is the Force, and a powerful ally it is." - Yoda
> -----Original Message-----
> From: Sean Faulkner [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, March 14, 2001 2:22 PM
> To: Spectra-Talk
> Subject: Maximize windows upon opening?
>
>
> Hi all:
>
> Just got a special request from a client to have the editing
> windows open up
> at full screen when they click to edit an object.. this maybe the
> stupidest
> question of the day but how would I modify that?
>
>
> =======================
> Sean Faulkner - Web Specialist
> AJJA Information Technology Consultants, Inc.
> (613) 563-2552 x 136
> http://www.ajja.com
>
>
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.