fullscreen mode Action Script In Flash
fullscreen mode - Flash (100% View Desplay Animation = exe, swf file )
[Action in Frame 1]
function modoFullScreen()
{
Stage.displayState = "fullScreen";
}
function modoNormal()
{
Stage.displayState = "normal";
}
Stage.align = "TL";
Stage.scaleMode = "noScale";
jpFull.onRelease = function () {
_root.modoFullScreen();
};
jpnor.onRelease = function () {
_root.modoNormal();
};
- button Full Scree: jpFull (Instance Name of movie clip or button)
- Normal button: jpnor (Instance Name of movie clip or button)
|