i have a list of options in my movie that u can pick from. each option pops up a flash window. the problem is, when one pop up window is open, i cant click another option and get another window to open without closing the one that opened before.
Here is the code i used on the buttons to spawn the pop up windows
[AS]on (release) {
// customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = “razzandbiggy.html”;
target_winName = “Digicel”;
width = 544;
height = 394;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 0;
resizable = 0;
// sends data back to the function
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}[/AS]
edit: any ideas on how to fix this?
thnx 4 the help guys