flash q

  • Started
  • Last post
  • 0 Responses
  • imakedesign

    trying to set my content to the center.. works great but fucks up when i resize the window. any ideas why?

    Stage.align = "TL";
    Stage.scaleMode = "noScale";

    stageListener = new Object();
    stageListener.onResize = function() {
    posContent();

    }

    Stage.addListener(stageListener...

    posContent = function() {
    main_mc._x = Math.round((Stage.width/2)-(main...
    main_mc._y = Math.round((Stage.height/2)-(mai...
    }

    stageListener.onResize();