1. i want to create a virtual piano, so what extension is better for the app ?
2. how to make the app become full screen ?
3. how to create button that close the app ? in case the app is in full screen mode
thanks in advance
Printable View
1. i want to create a virtual piano, so what extension is better for the app ?
2. how to make the app become full screen ?
3. how to create button that close the app ? in case the app is in full screen mode
thanks in advance
Fullscreen:
Actionscript Code:fscommand("fullscreen", true);
Close Fullscreen:
Actionscript Code:fscommand("fullscreen", true);
Close SWF:
Actionscript Code:fscommand("quit");
This will not work from inside Flash, so you have to open the SWF file locally, and I am not sure if fscommand is supported for all Flash Player Versions
Wherever you want. On your Frame if you want it to switch to fullscreen instantly, on a button wrapped in an event listener to fire at will
dude, I use Flash 8 myself and it works perfectly. HERE IS AN EXAMPLE I MADE (yellow is for Fullscreen, and Red is to undo the fullscreen)
and like I already said, this won't work from INSIDE Flash, you will need to manually open the .SWF file from your location folder!