Opening a new Window

2001-07-27 Thread ronmyers

HI I am a newbie at Using CF and HTML in general, But I am having fun
learning. My problem is I am opening a new window. I know how to set the
size How do I set the location where it opens. 

Thanks 

Ron

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Opening a new Window

2001-07-27 Thread Stephen Rojas

In your new window function there are three things you set, the URL, the
window name and then the properties, which include window size, position,
scrollbars(yes/no), and so on:

newWindow = window.open([URL of new window], [Window object name],
[Properties])

newWindow = window.open(www.website.com, MyWindow,
top=100,left=200,height=300,width=600)

BTW, this is really Javascript stuff more than CF or even HTML...I am not
nagging, only saying that so you know what resources to use later on :-)

-Stephen

-Original Message-
From: ronmyers [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 12:02 PM
To: CF-Talk
Subject: Opening a new Window


HI I am a newbie at Using CF and HTML in general, But I am having fun
learning. My problem is I am opening a new window. I know how to set the
size How do I set the location where it opens.

Thanks

Ron
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Opening a new Window

2001-07-27 Thread Dunwiddie, Bruce

OnClick=window.open('somewhere.cfm', 'edit',
config='height=600,width=800,top=1,left=1,scrollbars=yes')

-Original Message-
From: ronmyers [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 11:02 AM
To: CF-Talk
Subject: Opening a new Window


HI I am a newbie at Using CF and HTML in general, But I am having fun
learning. My problem is I am opening a new window. I know how to set the
size How do I set the location where it opens. 

Thanks 

Ron
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Opening a new Window

2001-07-27 Thread Mark Warrick

Are you taking about where on the screen it would open?   If so, I believe
that's a DHTML issue.  Otherwise, you can read up on how to create windows
at http://www.irt.org.

I recommend searching the net for DHTML tutorials or buy a book.   Someone
else on this list might be able to tell you exactly how to do it though.

---mark

=
Mark Warrick - Fusioneers.com
Personal Email: [EMAIL PROTECTED]
Business Email: [EMAIL PROTECTED]
Phone: 714-547-5386
Efax: 801-730-7289
Personal URL: http://www.warrick.net
Business URL: http://www.fusioneers.com
ICQ: 125160 / AIM: markwarric
=


-Original Message-
From: ronmyers [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 9:02 AM
To: CF-Talk
Subject: Opening a new Window


HI I am a newbie at Using CF and HTML in general, But I am having fun
learning. My problem is I am opening a new window. I know how to set the
size How do I set the location where it opens.

Thanks

Ron
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists