>Can
>you explain the following a little more:
><--JavaScript function--call it, say, OpenFocus. Within that function,
>call window.open('list of params...') and window.focus(). >

Sure...

In the header of your html file (the file that embeds your Shockwave 
movie), put this:

function OpenAndFocusWindow(theURL,winName,features) { //v2.0
   window.open(theURL,theWinName,theFeatures);
   window.focus();
}

Then in your movie, you would have this line:

goToNetPage("javascript:OpenAndFocusWindow('www.someURL.com','some_name','status=yes,scrollbars=no,resizable=yes,width=210,height=80');")

That should open the window and, if it's already open, bring it to the front.

Cordially,
Kerry Thompson
Learning Network


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to