PDA

View Full Version : Pop Up Question


rustys27851
02-28-2005, 01:31 PM
If I have a page, let's say named "demo.htm" and the user clicks on a link on this page that opens a pop up window where a flash animation plays inside of a html file. At the end of the flash animation, I want to have a link that will launch a different page in the window that demo.htm was just in. How would I do that?

thumbslinger
03-01-2005, 07:11 AM
You could use a frameset and target the original frame.

Or, put the content in 'demo.html' in a movie clip so that you can use loadMovie back into the original file.

Or, use different scenes.

If you pop-up a window, why not continue within that window? Just having a window hanging up there after its content has played may be distracting.?

farafiro
03-01-2005, 09:00 AM
u r after JS

tg
03-01-2005, 02:46 PM
if the link you click is in the same window as demo, then use:
getURL(myURL,"_self");

otherwise, you would need to use javascript, and the popup window would need a 'name' then everything that plays in that window would be targeted to that name.

but you may have problems with javascript popups and popup blockers.