PDA

View Full Version : pop up's and flash


usr radioshack
04-16-2003, 04:19 AM
does anyone know how to pop up a window a certain size... and have it contain the flash movie without all the back buttons and address bar???

billythehamster
04-16-2003, 08:12 AM
try this, edit popup.html to the file name you want.

on (release) {
getURL ("javascript:NewWindow=window.open('popup.html','new Win','width=400,height=300,left=0,top=0,toolbar=No ,location=No,scrollbars=No,status=No,resizable=No, fullscreen=No'); NewWindow.focus(); void(0);");
}

if you want it to load from the timeline:

on (load) {
getURL ("javascript:NewWindow=window.open('popup.html','new Win','width=400,height=300,left=0,top=0,toolbar=No ,location=No,scrollbars=No,status=No,resizable=No, fullscreen=No'); NewWindow.focus(); void(0);");
}

usr radioshack
04-16-2003, 08:26 AM
im not in a position to test it out right now... but i will be using that in a web page i have to make...thanks a lot!