PDA

View Full Version : popup with mc's


thebloodpoolkid
01-06-2003, 11:05 PM
I have a MC. It has 2 sences. In the first scene there is a button that on release it goes to scene 2 and plays that frame inwhich I directed it to do so.
What I want to do is.
when the end user clicks on the button flash goes to that scene and opens it up in a new window like a popup.

on (release) {
gotoAndStop("Scene 2", "MISC");

}


in scene 2 will be 1 layer and every frame will be anoter image.
I have 12 buttons in scene 1 that I want to do this for.
each button will go to that frame and (what I want is) open it up in a seperate window....appox 400 by 400 pixels

is that possible?

civicparadox
01-07-2003, 05:43 AM
The only thing I can think of is to break the 12 images into separate swf's and open another browser window displaying the image. Here is the tut for the window.

http://www.actionscripts.org/tutorials/beginner/PopUp_window_within_flash/index.shtml

lbower
01-07-2003, 12:45 PM
If you're using MX, you could maybe try the scrollPane component. While you're on frame one, have it be invisible. When the user clicks the button, the scrollPane becomes visible - i.e. it looks like it's a popup on your main window.