[svn:fx-trunk] 8020: Fallout from PARB changes - addressing 3 issues:

Revision: 8020
Author:   [email protected]
Date:     2009-06-19 16:02:54 -0700 (Fri, 19 Jun 2009)
Log Message:
Fallout from PARB changes - addressing 3 issues:
1.) http://bugs.adobe.com/jira/browse/SDK-21873 - Fixed
2.) missed PARB requested change, adjustSelectedIndex()/adjustSelectedIndices() are collapsed into a single method, adjustSelection()
3.) Excellent catch from Evtim - selectedIndices is now a Vector of ints instead of a Vector of Numbers (the PARB rename list had the right change!). Selection indices are always non-fractional, so we can get a slight savings by making this a Vector of ints.
QA: Yes - you'll need to update tests for point #3, and if you worked off the PARB rename list, then you shouldn't have to update for #2, otherwise you do.
Doc: Yes
Checkintests: Pass, as well as List/DDL mustella tests (except for 11 List tests that need selectedIndices to be changed from Vector.)
Reviewer: Evtim
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-21873
Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/List.as
    flex/sdk/trunk/frameworks/projects/flex4/src/spark/components/supportClasses/ListBase.as

Similar Messages

  • [svn:fx-trunk] 8044: Final (!) PARB changes for effects.

    Revision: 8044
    Author:   [email protected]
    Date:     2009-06-22 10:01:54 -0700 (Mon, 22 Jun 2009)
    Log Message:
    Final PARB changes for effects.
    - renamed ArrayInterpolator to MultiValueInterpolator (and enhanced behavior to handle Vectors as well as Arrays).
    - Created new AnimateTransform3D subclass of AnimateTransform (to hold 3D-specific properties/defaults), and moved Move3D, Rotate3D, Scale3D to subclass from this new class.
    QE Notes: Change to default value of applyLocalProjection (matches former default on 3D effects, but not default on AnimateTransform).
    Doc Notes: None
    Bugs: None
    Reviewer: Hans
    Tests: checkintests, effects cyclone from QE
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/Animate.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AnimateTransform.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/Move3D.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/Rotate3D.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/Scale3D.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/animation/Animation.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/animation/MotionPath.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/animation/SimpleMotionPath.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AnimateInstance .as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/AnimateTransform3D.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/interpolation/MultiValueInterp olator.as
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/effects/interpolation/ArrayInterpolato r.as

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • [svn:fx-4.x] 14338: layoutDirection PARB changes fixup - original submit was 14431, GraphicElement reverted in 14437

    Revision: 14338
    Revision: 14338
    Author:   [email protected]
    Date:     2010-02-22 12:54:39 -0800 (Mon, 22 Feb 2010)
    Log Message:
    layoutDirection PARB changes fixup - original submit was 14431, GraphicElement reverted in 14437
    In invalidateLayoutDirection compare with null rather than the old "inherit".
    QE notes:
    Doc notes: None
    Bugs:
    Reviewed By:
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/branches/4.x/frameworks/projects/spark/src/spark/core/SpriteVisualElement.as
        flex/sdk/branches/4.x/frameworks/projects/spark/src/spark/primitives/supportClasses/Graph icElement.as

  • [svn:fx-trunk] 15173: Merge 15171 SpriteVisualElement change from 4. x to trunk.

    Revision: 15173
    Revision: 15173
    Author:   [email protected]
    Date:     2010-03-31 11:00:24 -0700 (Wed, 31 Mar 2010)
    Log Message:
    Merge 15171 SpriteVisualElement change from 4.x to trunk.
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/core/SpriteVisualElement.as
    Property Changed:
        flex/sdk/trunk/

  • [svn:fx-trunk] 12481: Because of the Change/Changing changes in VideoPlayer , we need to also listen for a CHANGE as well as the CHANGE_END, CHANGE_START, THUMB_PRESS, and THUMB_RELEASE events.

    Revision: 12481
    Revision: 12481
    Author:   [email protected]
    Date:     2009-12-03 18:48:17 -0800 (Thu, 03 Dec 2009)
    Log Message:
    Because of the Change/Changing changes in VideoPlayer, we need to also listen for a CHANGE as well as the CHANGE_END, CHANGE_START, THUMB_PRESS, and THUMB_RELEASE events.
    Also, when clicking on the track and animating, the scrubbar's playedArea should move along with the thumb.  We do this by using pendingValue, rather than value in updateSkinDisplayList().
    QE notes: -
    Doc notes: -
    Bugs: SDK-24528
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24528
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/ScrubBar.as

    My first observation is that you don't reraise the error in the CATCH handler. That is bad, because it makes the proceedure fail silently which may be very difficult to troubleshoot.
    The version numbers for Change Tracking are indeed database-global. MIN_VALID_VERSION can be different for different tables, if they have different retention periods. But if they all have the same retention period, it seems likely that MIN_VALID_VERSION
    would increase as the database moves on.
    I'm not sure about your question Can we use the CHANGE_TRACKING_CURRENT_VERSION even though we want to download subset of data from the table (only records matching for one data_source_key at a time). Where would you use it? How would you use
    it?
    Erland Sommarskog, SQL Server MVP, [email protected]

  • [svn:fx-trunk] 11454: ASyncList class ASDoc change: added explicit warning about the lack of support for re-inserting pending items .

    Revision: 11454
    Author:   [email protected]
    Date:     2009-11-04 18:17:33 -0800 (Wed, 04 Nov 2009)
    Log Message:
    ASyncList class ASDoc change: added explicit warning about the lack of support for re-inserting pending items.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer:
    Tests run:
    Is noteworthy for integration:
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/AsyncListView.as

  • [svn:bz-trunk] 20754: My latest EndpointPushNotifier change changed the style of the code quite a bit  (sorry for that, it was my IDE settings getting in the loop here) I only changed one char line 389.

    Revision: 20754
    Revision: 20754
    Author:   [email protected]
    Date:     2011-03-10 03:36:05 -0800 (Thu, 10 Mar 2011)
    Log Message:
    My latest EndpointPushNotifier change changed the style of the code quite a bit (sorry for that, it was my IDE settings getting in the loop here) I only changed one char line 389.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/client/EndpointPushNotifier.java

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • [svn:bz-trunk] 21286: Also need to change 2 more private members to protected in order to make the first call after login

    Revision: 21286
    Revision: 21286
    Author:   [email protected]
    Date:     2011-05-20 11:43:00 -0700 (Fri, 20 May 2011)
    Log Message:
    Also need to change 2 more private members to protected in order to make the first call after login
    Modified Paths:
        blazeds/trunk/apps/ds-console/console/ConsoleManager.as

    Revision: 21286
    Revision: 21286
    Author:   [email protected]
    Date:     2011-05-20 11:43:00 -0700 (Fri, 20 May 2011)
    Log Message:
    Also need to change 2 more private members to protected in order to make the first call after login
    Modified Paths:
        blazeds/trunk/apps/ds-console/console/ConsoleManager.as

  • [svn:bz-trunk] 11459: Reverting my previous change 11396.

    Revision: 11459
    Author:   [email protected]
    Date:     2009-11-05 03:03:07 -0800 (Thu, 05 Nov 2009)
    Log Message:
    Reverting my previous change 11396. After further testing, realized that the perceived performance speedup through the edge server was due to a bug where not all nested objects were being deserialized properly.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf3Input.java

    Try options=('!makeflags') in PKGBUILD.

  • [svn:fx-trunk] 10317: In ASDoc comment, change reference of "Flex Builder" to "Flash Builder"

    Revision: 10317
    Author:   [email protected]
    Date:     2009-09-16 12:56:03 -0700 (Wed, 16 Sep 2009)
    Log Message:
    In ASDoc comment, change reference of "Flex Builder" to "Flash Builder"
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: -
    Tests run: - checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/netmon/NetworkMonitor.as

  • [svn:fx-trunk] 18301: Merging hero preview changes into trunk

    Revision: 18301
    Revision: 18301
    Author:   [email protected]
    Date:     2010-10-25 12:58:55 -0700 (Mon, 25 Oct 2010)
    Log Message:
    Merging hero preview changes into trunk
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.properties
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/collateral/en_US/license-adobesdk.htm
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.actionScriptProperties
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.flexProperties
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.project
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/AddItemsTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/EffectsProperties.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/NewEffects.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/RemoveItemsTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/ScrollbarFrenzy.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/SkinTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/components/AnimationPropertiesForm. mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/components/CircularScrollBar.as
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/layouts/NumberInterpolatorWrapping. as
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/layouts/WheelLayout.as
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/CircularScrollBarSkin.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/CircularScrollBarTrackSkin.mx ml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/MyScrollBarTrackSkin.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/MyVScrollBarSkin.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/sparkTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/testWheel.mxml
        flex/sdk/trunk/development/eclipse/readme.txt
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/build.xml
        flex/sdk/trunk/frameworks/build_framework.xml
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/libs/automation_agent.swc
        flex/sdk/trunk/frameworks/libs/osmf.swc
        flex/sdk/trunk/frameworks/libs/qtp.swc
        flex/sdk/trunk/frameworks/libs/qtp_air.swc
        flex/sdk/trunk/frameworks/libs/textLayout.swc
        flex/sdk/trunk/frameworks/locale/da_DK/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/da_DK/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/de_DE/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/de_DE/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/en_US/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/en_US/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/es_ES/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/es_ES/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/fi_FI/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/fi_FI/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/fr_FR/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/fr_FR/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/it_IT/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/it_IT/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/ja_JP/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/ja_JP/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/ko_KR/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/ko_KR/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/nb_NO/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/nb_NO/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/nl_NL/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/nl_NL/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/pt_BR/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/pt_BR/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/ru_RU/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/ru_RU/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/sv_SE/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/sv_SE/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_CN/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_CN/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_TW/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_TW/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/automation/bundles/da_DK/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/de_DE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/es_ES/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fi_FI/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fr_FR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/it_IT/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ja_JP/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ko_KR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nb_NO/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nl_NL/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/pt_BR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ru_RU/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/sv_SE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_CN/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_TW/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/src/mx/automation/delegates/controls/ListBa seAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation/src/mx/automation/tabularData/CartesianChar tTabularData.as
        flex/sdk/trunk/frameworks/projects/automation_dmv/src/mx/automation/delegates/advancedDat aGrid/AdvancedListBaseAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_dmv/src/mx/automation/delegates/charts/Cart esianChartAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/manifest_automation_spark.xml
        flex/sdk/trunk/frameworks/projects/automation_spark/src/AutomationSparkClasses.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/SparkComboBoxAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/SparkDataGroupAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/supportClasses/SparkListBaseAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/supportClasses/SparkSkinnableTextBaseAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/data_management-3.0.0.css
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/AreaChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/BarChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/BubbleChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/CandlestickChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/ColumnChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/HLOCChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/LineChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/PlotChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/Cartesian Chart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/ChartBase .as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/ChartElem ent.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/HLOCSerie sBase.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/InstanceC ache.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/PolarChar t.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/Series.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/StackedSe ries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/renderers/AreaRenderer .as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/renderers/HLOCItemRend erer.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/AreaSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/BarSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/BubbleSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/ColumnSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/HLOCSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/LineSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/PlotSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/controls/advancedDataGridClas ses/AdvancedDataGridColumn.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/controls/advancedDataGridClas ses/AdvancedDataGridItemRenderer.as
        flex/sdk/trunk/frameworks/projects/flash-integration/.settings/org.eclipse.core.resources .prefs
        flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/de_DE/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/fr_FR/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ja_JP/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ru_RU/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/zh_CN/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/UIMovieClip.as
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/build.xml
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/SharedResources.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/formatters.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/SharedResources.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/formatters.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/formatters.properties
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/AsyncListView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ProgressBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ToolTip.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/BitmapAsset.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/CrossDomainRSLItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/SpriteAsset.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/EffectEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/FlexEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/filters/BaseDimensionFilter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/filters/BaseFilter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/filters/IBitmapFilter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/geom/CompoundTransform.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/ImageSnapshot.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/ISystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/LayoutManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManagerProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/ChildManager.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/MarshallingSup port.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/printing/FlexPrintJob.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/IResourceManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/AddItems.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/SetEventHandler.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSStyleDeclaration.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/IAdvancedStyleClient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/ArrayUtil.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/Base64Decoder.as
        flex/sdk/trunk/frameworks/projects/halo/defaults.css
        flex/sdk/trunk/frameworks/projects/mx/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.accordionClasses.x ml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.dividedBoxClasses. xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.utilityClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.dataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.menuClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.scrollClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.sliderClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.textClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.videoClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.effects.effectClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.accordionClasses.x ml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.dividedBoxClasses. xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.utilityClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.dataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.menuClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.scrollClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.sliderClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.textClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.videoClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.effects.effectClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.accordionClasses.x ml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.dividedBoxClasses. xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.utilityClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.dataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.menuClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.scrollClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.sliderClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.textClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.treeClasses.

  • [svn:fx-trunk] 9890: Fix bug involving changes to tabbing related properties

    Revision: 9890
    Author:   [email protected]
    Date:     2009-09-01 15:57:01 -0700 (Tue, 01 Sep 2009)
    Log Message:
    Fix bug involving changes to tabbing related properties
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-19577
    Reviewer: Corey
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/managers/FocusManager
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19577
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as

  • [svn:fx-trunk] 9581: Reverted unintended recent change to TLFTextField.

    Revision: 9581
    Author:   [email protected]
    Date:     2009-08-25 10:51:18 -0700 (Tue, 25 Aug 2009)
    Log Message:
    Reverted unintended recent change to TLFTextField. When I integrated a new TLF yesterday, I accidentally checked in some changes to TLFTextField that aren't ready yet.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: None
    Tests run: ant checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_textField/src/flashx/textLayout/ controls/TLFTextField.as

  • [svn:fx-trunk] 7669: merging over beta1 changes that did not make it to trunk.

    Revision: 7669
    Author:   [email protected]
    Date:     2009-06-09 06:35:01 -0700 (Tue, 09 Jun 2009)
    Log Message:
    merging over beta1 changes that did not make it to trunk.  I'm not sure why they didn't make especially since they were my changes! (I will investigate)
    bugs: no
    qa: no
    checkintests: good
    Modified Paths:
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/flex-config.xml

    Gordon, it looks like its been a while since you made this post.  Not sure how valid it is now...   I am particularly interested in the LigatureLevel.NONE value.  It seems that it is no longer supported.
    How do I turn of ligatures in the font rendering?
    My flex project involves trying to match the font rendering of Apache's Batik rendering of SVG and ligatures have been turned off in that codebase.  Is there any way (even roundabout) to turn ligatures off in flash?
    Thanks,
    Om

Maybe you are looking for