AS 2 Fullscreen btn


/ Published in: ActionScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. fullscreen_mc.onRelease = function() {
  2. if (Stage["displayState"] == "normal") {
  3. Stage["displayState"] = "fullScreen";
  4. } else {
  5. Stage["displayState"] = "normal";
  6. }
  7. };

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.