Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 372261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:11:37+00:00 2026-05-12T14:11:37+00:00

When embedding flash movies, you can specify a parameter indicating the quality of the

  • 0

When embedding flash movies, you can specify a parameter indicating the “quality” of the movie’s playback. This generally affects whether the Flash runtime will antialias your shapes and your video content. More info here.

Does anyone know the default value of this parameter? Adobe neglected to document the default value. Empirically, it appears to be “high” or “autohigh” on both Mac and Windows (independent of the browser), but I cannot discern which one.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T14:11:37+00:00Added an answer on May 12, 2026 at 2:11 pm

    In summary: empirically, the default value for the quality parameter is “high”, not “autohigh”.

    The code provided by Andi Li was a good start, but it doesn’t actually tell you if the setting is “high” vs. “autohigh”. Autohigh will modify the quality of the movie in real time as the framerate changes. If the framerate drops below a certain threshold, the Flash runtime will change the quality to “low”.

    I used the following code snippet which uses a heuristic to detect whether the setting is “high” or “autohigh” by drawing heavily and waiting for the quality reported by stage to transition from “high” to “low”. If it doesn’t transition, that means the quality is high, not autohigh.

    Running this code in an embed without the quality parameter specified (so it will use the default value) had a measured quality value of high (not autohigh) on the following platforms:

    OS: Win XP, Win 7, OSX
    Browsers: IE6, IE7, IE8, FF3, FF3.5, Safari 3, Safari 4, Safari 4 on Windows XP
    Flash versions: 9.0.28, 9.0.124 and Flash 10 (release, not debug versions)

    Here’s the experiment:

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete();">
      <mx:Script>
        <![CDATA[
          import mx.containers.Box;
          import mx.controls.Alert;
    
          private var boxes:Array = [];
    
          public function onCreationComplete():void {
            this.qualityValue.text = this.systemManager.stage.quality;
            for (var i:int = 0; i < 2500; i++) {
              var box:Box = new Box();
              box.width = 300;
              box.height = 300;
              box.x = 200 + i;
              box.y = i;
              this.addChild(box);
              boxes.push(box);
            }
          }
    
          private function onEnterFrame(event:Event):void {
            for each (var box:Box in boxes)
              box.setStyle("backgroundColor", Math.random() * 100000);
            this.qualityValue.text = this.systemManager.stage.quality;
          }
    
          private function beginSlowdown():void {
            this.systemManager.stage.addEventListener(Event.ENTER_FRAME, onEnterFrame);
          }
        ]]>
      </mx:Script>
      <mx:VBox>
    
      <mx:Label text="Quality:"></mx:Label>
      <mx:Label id="qualityValue"></mx:Label>
      <mx:Button click="beginSlowdown()" label="Begin slowdown"></mx:Button>
      <mx:Label id="output"></mx:Label>
      </mx:VBox>
    </mx:Application>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Flash, via the authoring environment, you can put bitmaps in your movie that
In the Embed...Character Embedding window in the Flash environment, you can select to embed
I'm embedding a flash swf into an html page and setting wmode=transparent. I need
Im embedding a google map with the gmap3 jQuery plug in: http://gmap3.net/index.html How can
I have a JavaScript function that loads a flash movie into a webpage div
I am embedding a flash object into my site and when I do I
I am embedding a swf movie into my html with the static publishing method
I've got a problem controlling a quicktime movie from javascript. I am embedding a
jQuery Tools has flashembed which can pass a JSON object as a config parameter
I'm trying to do something a little different with my flash embedding on an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.