can this be done in 3dfa, if so if it the same coding as as3?
http://48stewdbaker.smugmug.com/The-...52865890_DYiNU (click on slideshow)
Thanks,
J
Printable View
can this be done in 3dfa, if so if it the same coding as as3?
http://48stewdbaker.smugmug.com/The-...52865890_DYiNU (click on slideshow)
Thanks,
J
....well after going through about 6 seperate tutorials on how to do this in flash, I got wise and simply added the code to a script in my button, surprisingly simple. Wonder why flash makes it so difficult.
-J
How did you do in as3?
This is for as2:
PHP Code:element ("fs_btn").onRelease = function()
{
if (stage.displayState == "normal")
{
stage.displayState = "fullScreen";
}
else if (stage.displayState == "fullScreen")
{
stage.displayState = "normal";
}
}
;
...it's simpler than that, just put "stage.displayState = FULLSCREEN;" in a button on a script, do the same in another button with "NORMAL" and it's done, too simple, you need none of the superfolous coding, just that.
Gotta love 3DFA!
-J