Flex / Flash - How do I open the .swf in a browser window that doesn't have the browser control bar or menu?
The title essentially is the question, how do I open the .swf without the browser's con开发者_开发技巧trol bar junk? and maximize the window?
You can do that with the javascript open function.
See here : http://www.javascripter.net/faq/openinga.htm
It will be something like
window.open('yourswf','window name','width=500,height=500,toolbar=0,resizable=0,location=0...');
Hope that was helpful.
When the browser has focus, press the alt
key. This should bring up the file menu. Or you can drag and drop the swf onto the browser.
On windows, you can right click the SWF file and click "open with" from the menu. You can then select your browser. If your browser does not show up in the menu click "choose program.." and selected it from there.
Not sure if this is what you wanted from your question.
精彩评论