[svn:fx-trunk] 11575: Put default style declarations into one class per application or module.

Revision: 11575
Author:   [email protected]
Date:     2009-11-09 11:34:57 -0800 (Mon, 09 Nov 2009)
Log Message:
Put default style declarations into one class per application or module.
Generate all the default styles in one class instead of a class for each style. The name of the style class will be based on the application or module name. An application named ?\226?\128?\156foo?\226?\128?\157 will have a style class named ?\226?\128?\156_foo_Style?\226?\128?\157. The idea is to allow applications to be compiled with different themes and get their owns styles. Currently this is not possible because a global style in both themes will have the same class name, _globalStyle. Whatever class the top-level application loads the sub-applications and modules will have to use the same class because of the flash player first-class-in-wins rule. Now each application and module will have their own style class.
QE notes: None.
Doc notes: None.
Bugs: SDK-22454
Reviewer: Paul, Pete
Tests run: checkintests, all mustella tests.
Is noteworthy for integration: No.
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-22454
Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleDef.vm
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java

Revision: 11575
Author:   [email protected]
Date:     2009-11-09 11:34:57 -0800 (Mon, 09 Nov 2009)
Log Message:
Put default style declarations into one class per application or module.
Generate all the default styles in one class instead of a class for each style. The name of the style class will be based on the application or module name. An application named ?\226?\128?\156foo?\226?\128?\157 will have a style class named ?\226?\128?\156_foo_Style?\226?\128?\157. The idea is to allow applications to be compiled with different themes and get their owns styles. Currently this is not possible because a global style in both themes will have the same class name, _globalStyle. Whatever class the top-level application loads the sub-applications and modules will have to use the same class because of the flash player first-class-in-wins rule. Now each application and module will have their own style class.
QE notes: None.
Doc notes: None.
Bugs: SDK-22454
Reviewer: Paul, Pete
Tests run: checkintests, all mustella tests.
Is noteworthy for integration: No.
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-22454
Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleDef.vm
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java

Similar Messages

  • Putting 7 table fields into one field with line breakes included!

    Hi People
    I Need to assamble 7 fields from a view, into one field with some line brakes in Reports, how do I do that???
    E.g :
    Field names : Name, Collection1, StreetName, StreetNo, ExtraCity, ZipCode, City
    Should be put into one field called address and be displayed like this
    Name
    Collection1
    StreetName StreetNo
    ExtraCity
    ZipCode City
    I hope someone can help me *S
    /Stig :-)

    The following should give you some idea. It might depend if you run your report on Windows or Unix.
    select
    Name        || decode(Name, null, null, chr(13)||chr(10))||
    Collection1 || decode(Collection1, null, null, chr(13)||chr(10))||
    StreetName  || decode(StreetName, null, null, ' '||StreetNo||chr(13)||chr(10))||
    ExtraCity   || decode(ExtraCity, null, null, chr(13)||chr(10))||
    ZipCode     || decode(ZipCode, null, null, ' '||City )
    from MyView

  • Can't put serveral PDF files into one document any more.

    I used to able to scan several PDF files into one document onto my desktop. I no longer can. I have Windows7 OS and a HP Photosmart 6515 printer.  PS. Just the other day I had someone remotely access my computer to fix a MagicJack (computer connected phone) issue and who knows what they might have done. Thank you anyone.
    This question was solved.
    View Solution.

    Thanks for all the time you spent to help me and all the effort you you put forth to solve mine and other's problems. God bless you.

  • [svn:fx-trunk] 10893: The 'lineBreak' style is now properly declared as non-inheriting.

    Revision: 10893
    Author:   [email protected]
    Date:     2009-10-06 10:16:37 -0700 (Tue, 06 Oct 2009)
    Log Message:
    The 'lineBreak' style is now properly declared as non-inheriting.
    For a long time we've intended for it to be non-inheriting... it lives in BasicNonInheritingStyles.as! And we want it to be non-inheriting, because in TLF this format does not inherit from parent FlowElement to child FlowElement, so in Flex is should not inherit from parent UIComponent to child UIComponent. But the metadata incorrectly said inherit="yes". It now correctly says inherit="no".
    QE notes: Please be on the lookup for mustella breakage.
    Doc notes: None
    Bugs: SDK-23569
    Reviewer: Ryan
    Tests run: ant checkintests
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23569
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/styles/metadata/BasicNonInheritingText Styles.as

    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

  • [svn:fx-trunk] 11490: Add accentColor style.

    Revision: 11490
    Author:   [email protected]
    Date:     2009-11-05 17:34:58 -0800 (Thu, 05 Nov 2009)
    Log Message:
    Add accentColor style. This color is used to tint "emphasized" buttons, and as the color for slider track highlighting.
    QE notes: Tests should be added for this style.
    Doc notes: ASDoc added, but should be reviewed.
    Bugs: SDK-23450, SDK-23451
    Reviewer: Ryan
    Tests run: checkintests, components/Slider, components/Alert
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23450
        http://bugs.adobe.com/jira/browse/SDK-23451
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Button.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/sliderClasses/Slider.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ScrollControlBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Button.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/SkinnableContainer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/DefaultButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/DefaultButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/SliderTrackHighlightSkin .mxml

  • [svn:fx-trunk] 10158: Reverting the styles-related change in commit 10131.

    Revision: 10158
    Author:   [email protected]
    Date:     2009-09-11 09:47:12 -0700 (Fri, 11 Sep 2009)
    Log Message:
    Reverting the styles-related change in commit 10131. The fix broke several Mustella tests because of the change in checkbox/radiobutton padding. Verifying that this is the new look we want, also adjusting the code to make sure that we only do it for spark-skin cases.
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/CheckBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RadioButton.as
        flex/sdk/trunk/tools/dependencychecker/frameworkSwcExceptionsList.txt

    This is great. It will totally help clear up what commits happen in flex trunk vs the i10/11 branches.
    Great solution!

  • [svn:fx-trunk] 10269: Changing default for -enable-runtime-design-layers to true.

    Revision: 10269
    Author:   [email protected]
    Date:     2009-09-15 10:46:10 -0700 (Tue, 15 Sep 2009)
    Log Message:
    Changing default for -enable-runtime-design-layers to true.  The flag may still be used to disable processing of design layer instances if so desired.
    QE notes: None
    Doc notes: None
    Bugs: SDK-23238
    Reviewer: Paul
    Tests run: Checkin
    Is noteworthy for integration: Yes, runtime design layers are now enabled by default.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23238
    Modified Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/CompilerConfiguration.java

    APDivs are a thing of the past and is bad practice. You need a working knowledge of CSS to get a modern looking layout and to do justice to your design which looks great btw.
    One out-of-the-box solution is to use Bootstrap - http://twitter.github.com/bootstrap/index.html and use the pre-defined classes/ grids to layout your content.

  • [svn:fx-trunk] 7125: Change default columnGap from 0 to 20 to match Vellum' s default.

    Revision: 7125
    Author:   [email protected]
    Date:     2009-05-20 04:12:27 -0700 (Wed, 20 May 2009)
    Log Message:
    Change default columnGap from 0 to 20 to match Vellum's default.
    QA Notes:
    Doc Notes:
    Bugs: SDK-18095
    Reviewers: Gordon
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-18095
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/defaults.css

    Revision: 7125
    Author:   [email protected]
    Date:     2009-05-20 04:12:27 -0700 (Wed, 20 May 2009)
    Log Message:
    Change default columnGap from 0 to 20 to match Vellum's default.
    QA Notes:
    Doc Notes:
    Bugs: SDK-18095
    Reviewers: Gordon
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-18095
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/defaults.css

  • [svn:fx-trunk] 10067: Before validating style enums we must first ensure it is not a @ Directive or binding.

    Revision: 10067
    Author:   [email protected]
    Date:     2009-09-08 14:22:40 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Before validating style enums we must first ensure it is not a @Directive or binding.
    QE notes: None
    Doc notes:  None
    Bugs: SDK-23088
    Reviewer: Carol
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23088
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/AbstractBuilder.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • [svn:fx-trunk] 9778: Change default creationPolicy for NavigatorContent to null.

    Revision: 9778
    Author:   [email protected]
    Date:     2009-08-28 17:16:26 -0700 (Fri, 28 Aug 2009)
    Log Message:
    Change default creationPolicy for NavigatorContent to null.  If null, NavigatorContent will check its parent Navigator's creationPolicy.  If the parent Navigator's creationPolicy is "all", NavigatorContent will use "all" and create all of its children.  Otherwise, NavigatorContent will use "none" as the creationPolicy.
    QE Notes: default value for creationPolicy is null
    Doc Notes: default value for creationPolicy is null
    Bugs: None
    Reviewer: Ryan
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/NavigatorContent.as

  • [svn:fx-trunk] 9775: BorderSkin inset style improvements

    Revision: 9775
    Author:   [email protected]
    Date:     2009-08-28 15:25:54 -0700 (Fri, 28 Aug 2009)
    Log Message:
    BorderSkin inset style improvements
    I updated the logic for drawing the inset. First of all, if there is no cornerRadius, then we just draw a straight line. The other change is instead of drawing 1 quadratic curve, we now draw 2 quadratic curves per corner, using the algorithm from GraphicUtils.drawRoundRectComplex.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: Glenn
    Tests run: Checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/BorderSkin.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:bz-trunk] 17299: BLZ-555: Bad version number in . class when starting JBoss 5.x with latest BlazeDS app

    Revision: 17299
    Revision: 17299
    Author:   [email protected]
    Date:     2010-08-12 05:36:37 -0700 (Thu, 12 Aug 2010)
    Log Message:
    BLZ-555: Bad version number in .class when starting JBoss 5.x with latest BlazeDS app
    The "testdata" package has been compiled using JDK 1.6. When you try to run on application server that uses JDK 1.5, it will give the above error. Removed this test related package from the aspectjweaver-1.6.5.jar.
    Checkintests: PASS
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-555
        http://bugs.adobe.com/jira/browse/aspectjweaver-1
    Modified Paths:
        blazeds/trunk/lib/spring/aspectjweaver-1.6.5.jar

    andre.ramaciotti wrote:And I'm not sure if you should put that & after exec awesome. It works fine here without it.
    No & after entries in .xinitrc . You've commented out the awesome entry.

  • [svn:fx-trunk] 5029: Extending the mxmlc warning to apply to any application that uses a type selector (i.e.

    Revision: 5029
    Author: [email protected]
    Date: 2009-02-20 16:10:37 -0800 (Fri, 20 Feb 2009)
    Log Message:
    Extending the mxmlc warning to apply to any application that uses a type selector (i.e. not a universal selector) in the subject when the
    QE: If we could create a negative test cases for the warning that'd be great.
    Doc: Not yet, this will be captured in the Advanced CSS spec.
    Checkintests: Pass
    mustella: Advanced CSS, Button, MenuBar all Pass
    Reviewer: For Paul.
    Bugs:
    SDK-19272 - [Advanced CSS] Pseudo selectors shouldn't be allowed in mxml components
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19272
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java

    Thanks for the crash log  It looks like you have AIR 3.2 installed.  Could you try updating to 3.3 and generate another log?
    http://get.adobe.com/air

  • [svn:fx-trunk] 11488: Resubmitting binary distribution of xercesPatch. jar from the third party module in the SDK and compiled it with Sun JDK 1.4 .2_12.

    Revision: 11488
    Author:   [email protected]
    Date:     2009-11-05 17:10:10 -0800 (Thu, 05 Nov 2009)
    Log Message:
    Resubmitting binary distribution of xercesPatch.jar from the third party module in the SDK and compiled it with Sun JDK 1.4.2_12.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-16818 - Must open-source the code for xercesPatch.jar.
    Reviewer: Discussed with Gordon
    Tests run: Checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-16818
    Modified Paths:
        flex/sdk/trunk/lib/xercesPatch.jar
        flex/sdk/trunk/modules/thirdparty/xerces-patch/build.xml

    Did you try this:
    http://forum.java.sun.com/thread.jsp?thread=434718&forum=60&message=1964421

Maybe you are looking for

  • Multiple Selects in a single form

    I have six select boxes and I want them in a single form. Below are the outputs for the select boxes. <cfform action="Resolution_History.cfm?year=#year#&sessiontype=#sessiontype#&btype=res" name="form"> <select name="SRINPUT"> <option value="">SR <CF

  • Can you connect older 27" LED Display to current iMacs?

    Hi - finding conflicting information via Apple support pages and google and wanted to throw this out to the community for verification. My endstate is to run dual 27" LEDs...one being on a current iMac and the other being a first-generation Apple 27"

  • How can I resolve 127.0.0.1 to my IP address?

    How can I resolve 127.0.0.1 to my IP address?

  • Clear guides in Photoshop CS4 JS

    Hi, I couldn't find anything in OMV or in the forum on how to remove existing guides in Photoshop. The help is highly appreciated. Yulia.

  • Setting Web service runtime

    Hi How can i change the Web Service runtime in the IDE studio from "Apache Axis" to "Sap NetWeaver"? Regards Raja