Click to See Complete Forum and Search --> : Naked Window
Chatty
11-09-2005, 10:27 PM
I'm building a flash site and I have a button that I want to open a new window. The window is photo gallery and I don't want it to have a scroll bar, menu, and all that fun stuff.
Is there a code i can stick in the html file to make it open up like this?
Chatty
deep.dhyani
11-09-2005, 11:34 PM
code is here:
put this code on flash button or movieclip
on(press){
getURL("javascript:open_win()");
}
put this code on html page
<Script Language="javascript">
function open_win(){
prop="toolbar=no,width=100,height=100,menubar=no,scrollbar=no,statusbar=no";
window.open("","",prop);
}
Chatty
11-10-2005, 12:47 AM
Can't get that to work.
Bullschmidt
11-15-2005, 03:43 PM
You may want to check this out:
So You Want To Open A Window, Huh? by Joe Burns
http://www.htmlgoodies.com/beyond/javascript/article.php/3471221
yngexec
11-15-2005, 03:57 PM
I'm building a flash site and I have a button that I want to open a new window. The window is photo gallery and I don't want it to have a scroll bar, menu, and all that fun stuff.
Is there a code i can stick in the html file to make it open up like this?
Chatty
What's the URL?
Are you trying to do this using HTML/Javascripting or through Actionscripting in the actual flash application?