AS3 Quick Tips: Change Movie Quality with Actionscript 3

Flash CS3 Professional

Hi all just thought it’d be good to tell ye all how to change the quality of your movie with actionscript so it changes on runtime.

Quick Code:

stage.quality = StageQuality.LOW;
stage.quality = StageQuality.MEDIUM;
stage.quality = StageQuality.BEST;

Simply paste one of these into your actions layer and huzzar! the quality will be altered!

Peace out
Bill

5 Comments

  1. good men….very good

  2. Shouldn’t this be stage.quality=”high” ?

  3. Its more correct:

    stage.quality = “LOW”;
    stage.quality = “MEDIUM”;
    stage.quality = “HIGH”;

  4. even more correct would be:

    stage.quality = StageQuality.LOW;

    .HIGH, .MEDIUM and .BEST

  5. i suppose it is about time i updated this article. Thanks Eric Gurt & isilweo :) you dont really win anything though.

    heres an unhappy cyclopse }@(

Leave a Reply