OT New window

2002-03-15 Thread Ray Bujarski
I am using the following code to open a new window. However when one window has already been spawned from the opener, any more new windows simply re-use the same one. I need to open a new window every time, (My users REALLY want to annoy themselves;-) Can anyone tell me how to get the

RE: OT New window

2002-03-15 Thread VAN VLIET, SCOTT E (SBCSI)
: 858.653.6763 Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 10:41 AM To: CF-Talk Subject: OT New window I am using the following code to open a new window. However when one window has

Re: OT New window

2002-03-15 Thread savan . thongvanh
call the OpenWindow function with at timestamp as the title openWindow(strURL, new Date(), intWidth, intHeight); Ray Bujarski [EMAIL PROTECTED] on 03/15/2002 12:41:14 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: OT New window I am using

Re: OT New window

2002-03-15 Thread Greg Alton
You need a new name for the window, so add an instance variable and append it's value to strTitle. I added to the code below. Greg Alton CFDev I am using the following code to open a new window. However when one window has already been spawned from the opener, any more new windows simply

Re: OT New window

2002-03-15 Thread Greg Alton
Simple is beautiful! Great idea! Greg Alton CFDev - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 1:50 PM Subject: Re: OT New window call the OpenWindow function with at timestamp as the title openWindow(strURL, new Date

Re: OT New window

2002-03-15 Thread Dave Hannum
BODY onLoad=window.focus() Dave - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 1:59 PM Subject: Re: OT New window On this line of pop-ups. I'm looking for code to always keep the window on top without

Re: OT New window

2002-03-15 Thread savan . thongvanh
simple. just like me. :P Greg Alton [EMAIL PROTECTED] on 03/15/2002 01:17:52 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: Re: OT New window Simple is beautiful! Great idea! Greg Alton CFDev - Original Message - From: [EMAIL PROTECTED

RE: OT New window

2002-03-15 Thread Ron Hornbaker
call the OpenWindow function with at timestamp as the title openWindow(strURL, new Date(), intWidth, intHeight); As a solution to always open a new window, that's actually a bad idea. Much better to use '_blank' as the window name, which is treated just like a target attribute of _blank in

Re: OT New window

2002-03-15 Thread Bryan Stevenson
] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 11:42 AM Subject: Re: OT New window That does not cause the window to refresh. That just brings it to the front when it loads. Dave - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk [EMAIL

OT: New Window

2000-05-15 Thread Computer Simplistics Suppoer
What would be some JavaScript (I am assuming that is what I would use) to open the results of a form in a new window, one which I can control the size, toolbars, resize, etc? I am thinking something like: form action="blah.cfm" target="window.new(something)" from what I have seen. Any help