Flash exe > html full screen
- Started
- Last post
- 16 Responses
- unknown
Is it possible to launch a full screen HTML page from a Flash file that is not nested in an HTML page...
pretty much I have a flash.exe file for a presentation... so this is not nested in an HTML page.... and i want to open a Full Screen Html page from the exe....
I can do it easy if the flash.exe is an fla and in an HTML to begin.. but i need it to work with the flash file NOT in the HTML file
- jevad0
don;t think you can
- unknown0
thats what im afraid of
- rh0
How about the exec fscommand?
- unknown0
will that commande launch an HTML document full screen?
I thought it just launged the flash full screen
- ********0
absolutely 100% yes
- ********0
check http://www.macromedia.com and go to their tutorial section, I've seen it done many times.
- unknown0
aint seeing it JazX
Only see it working with the swf in the HTML
i Want it to work with the swf (exe) as a stand alone, not embeded.
- unknown0
what about this
can you open another exe from your original flash exe
- Jnr_Madison0
Yeah
- majman0
there are a lot of third party people that help flash .exe files do other things including launch different file types and remove the windows border, or make a masked projector etc.
i think flash jester is one of them. do a search on google.
- unknown0
figured it out... well atleast launching another exe
- corin0
Yay, I'm helping -
- unknown0
simple burty, use:
on (release, releaseOutside) {
getURL("yourlocalhtmlfile");
}
getURL will instruct OS to start the default browser installed and try to open your html file.In your called html file put JS function that expands it to full screen and call the function when the page loads.
- unknown0
oh and btw be carefull with calling other programs with fscommand cause you might have memory issues. That's why people use Director. :)
Cheers.
- ********0
it'll work for you