aribert888
Programmer
Out of a Flash menu I am opening a html popup by pressing the button 'example1'. No problem.
on(release){
getURL ("javascript:NewWindow=window.open('example1.htm','name','width=835,height=220,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
Every time I press a button in the Flash menu a NEW window opens. So in the end 10 windows are open. I rather want that the previous window is closed and a new window is opened. With other words: the previous window should be substituted.
How can I do THAT?
Thanks a lot for thinking and helping!
on(release){
getURL ("javascript:NewWindow=window.open('example1.htm','name','width=835,height=220,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
Every time I press a button in the Flash menu a NEW window opens. So in the end 10 windows are open. I rather want that the previous window is closed and a new window is opened. With other words: the previous window should be substituted.
How can I do THAT?
Thanks a lot for thinking and helping!