Set a footer on your Flash Movie

Actionscript:
  1. stageListener = new Object();
  2. stageListener.onResize = function() {
  3. // enter what you want to do on resize, for example:
  4. contentHolder_mc._y = Stage.height - contentHolder_mc._height;
  5. contentHolder_mc._width = Stage.width;
  6. }
  7. Stage.addListener(stageListener);
  8. stageListener.onResize();

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.