aidanmack
08-16-2007, 05:08 AM
can you control what size window is opened from a button clicked in flash?
for example make the new window 750 x 550?
anything else like remove scroll bars ect?
cheers
Aidan
ryanbutler
08-16-2007, 09:29 AM
You can...sometimes it's a pain in the rear, especially if you're using XML, but in the case of a button, look into the getURL function and parameters.
Webjedikungfu
08-16-2007, 05:20 PM
Here you go,
on (release) {
getURL ("javascript:NewWindow=window.open('page.html','newWin','width=400,height=300,left=0,top=0,toolbar=No, location=No,scrollbars=No,status=No,resizable=Yes,fullscreen=No'); NewWindow.focus(); void(0);");
}