The issue is that when you spawn a new popup the 'name' field must be different, otherwise your browser recognizes the exisiting popup with that name and simply opens your document in that window.
You can fix this by manually alterring the name field on each of your buttons, or dynamiccaly using code like this:
Code:
on (release) {
_root.buttonCount += 1;
getURL ("javascript:openNewWindow('somePage.html','thewin"+_root.buttonCount+"','height=100,width=250,toolbar=no,scrollbars=yes')");
}
NB: This code is just an example, you will obviously have to change the javascript function it calls and the values it passes.
keywords: open multiple pop up windows name field new
__________________
Cheers
Jesse Stratford
ActionScript.org Cofounder
Please
don't email or PM me Flash questions, that's what the Forums are for!
Please don't rely on me reading my PMs either. Email me about important stuff.