Hi, I need some help on pop up window from a flash page (please bare with me, i am very new to this):
I made a page using flash to display a few pictures. On click on each thumbnails of these pictures, it will bring up the actual size picture and also bring up 5 other thumbnails below, these thumbnails actually acts like buttons to open up html popup window. I have used the code generator to get the following:
on (release) {
getURL ("javascript:popupWindow=window.open('x1.htm','popup','width=400,height=300,left=5,top=5,toolbar=0,location=0,scrollbars=0,status=0,resizable=0,fullscreen=0'); popupWindow.focus(); setTimeout('popupWindow.moveTo(300,200)',1000); void(0);");
}
Now, the popup window works, but I have the following problems:
1. I wish to when i click on other thumbnails (buttons), the content of other buttons gets put into the same first popup window. Right now it doesnt do that, actually nothing happens when i click on the next button.
2. the focus dont work, dont know why? the popup window stays behind the main brower??
3. I really like what the code generator did in animating the move to, but is there a way to use that in my case where instead of straight appearing after 1 sec at (300,200), it actually animate its way there? How to put that part of the code in the above line?
Appreciate all help and comments to improve the above, thank you very much