[svn] 4885: Flex SDK Framework - Update mx.filters API and class hierarchy

Revision: 4885
Author: [email protected]
Date: 2009-02-06 16:12:32 -0800 (Fri, 06 Feb 2009)
Log Message:
Flex SDK Framework - Update mx.filters API and class hierarchy
- Removed BaseFilter.as, BaseDimensionFilter.as, and GradientFilter.as
- Renamed IBitmapFilter.as to IFlexBitmapFilter.as
- Changed IBitmapFilter.clone to createBitmapFilter
- Moved properties and functions from base classes up to filter subclasses
- Changed ColorMatrixFilter constructor parameter from Array to Object
- Added Change metadata to all filter classes
- Changed notifyFilterChanged from public to private
- Added ASDoc comments
- Added copyright info
- Added a number of formatting and style fixes
QE Notes: Need to update tests based on API changes. Missing tests for DisplacementMapFilter.as.
Doc Notes: Need extensive ASDoc review. Consider using @copy for properties that match the flash.filters properties
Bugs: n/a
Reviewer: Gordon
Modified Paths:
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/FxAnimateFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxAnimateFilterInst ance.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/BevelFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/BlurFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/ColorMatrixFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/ConvolutionFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/DisplacementMapFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/DropShadowFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/GlowFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/GradientBevelFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/GradientGlowFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/ShaderFilter.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/Parser.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/StrokedElement.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/GraphicElement.a s
flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
Added Paths:
flex/sdk/trunk/frameworks/projects/framework/src/mx/filters/IFlexBitmapFilter.as
Removed Paths:
flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/GradientFilter.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

Yup. The source files are simply missing from the 4.5 source releases....I'm hitting the same issue when trying to rebuild the SDK with flexcover changes applied.

Similar Messages

  • [svn] 4159: Enhancement SDK-18016 - updating mxmlc' s Embed functionality to recognize .pbj files as precompiled Shader files.

    Revision: 4159
    Author: [email protected]
    Date: 2008-11-21 13:06:29 -0800 (Fri, 21 Nov 2008)
    Log Message:
    Enhancement SDK-18016 - updating mxmlc's Embed functionality to recognize .pbj files as precompiled Shader files. This change still retains the old octet stream MIME type mapping to a ByteArray based class, but this change removes the hoop you have to jump through to embed a Shader. The new Embed usage should simply be as follows:
    [Embed(source="TubeView.pbj")]
    private var TubeViewClass:Class; //Subclass of flash.display.Shader
    Also updating Embed MIME types to recognize .dfont files since these are supported by CFFFontManager.
    Finally, updating FXG TextGraphic -> SymbolClass to use a simple FlexSprite instead of a Group. TextGraphic should now render at the right depth among SWF graphics primitives when compile time optimized FXG is used.
    QE: Yes
    Doc: If we've documented embedding .pbj, this is a simpler approach and represents a slight change in syntax.
    Checkintests: Pass
    Reviewer: Corey (Note he said he'll update ShaderFilter with a new property to accept a shader directly in a future check-in).
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18016
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/filters/ShaderFilter.as
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedUtil.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/TextFXGGraphics.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/TextHelper.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/DataTranscoder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/FontTranscoder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MimeMappings.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/WebTierAPI.java
    Added Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/PBJTranscoder.java

  • [svn] 4600: Flex SDK - Move style metadata from base class down to component classes

    Revision: 4600
    Author: [email protected]
    Date: 2009-01-20 13:11:33 -0800 (Tue, 20 Jan 2009)
    Log Message:
    Flex SDK - Move style metadata from base class down to component classes
    Previously, all spark and text styles were defined on FxComponent even though not every component supports all of those styles. So I have moved each style to the top-most base class where the style will apply to all descendant classes of that base class.
    This is the set of styles that were added to the various classes:
    baseColor
    color
    focusColor
    symbolColor
    selectionColor
    contentBackgroundColor
    rollOverColor
    alternatingItemColors
    basic text styles
    advanced text styles
    Here are some details about the implementation:
    - baseColor was added to FxComponent because every component and container supports it
    - FxContainer and GroupBase are containers, so their children can potentially support any of the styles. Thus the container classes support all of the styles indirectly.
    - FxDataContainer doesn't support all of the styles because its subclasses (FxButtonBar, FxList) don't support all styles.
    - FxList supports selectionColor, but not inactiveSelectionColor or unfocusedSelectionColor. All other components that support selectionColor, support the other two styles, and thus include styles/metadata/SelectionFormatTextStyles.as
    - GroupBase contains the style declarations that have the full ASDoc. All other declarations use the @copy keyword to reference the asdoc from GroupBase.
    QE Notes: Update tests to remove references to styles that are no longer allowed on various components/FxButton.as
    Doc Notes: Write the ASDoc comments for the style declarations in GroupBase
    Bugs: n/a
    Reviewer: Glenn
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxButton.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxCheckBox.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxContainer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxDataContainer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxList.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxRadioButton.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxScroller.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxSpinner.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxTextArea.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxComponent.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxScrollBar.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxSlider.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxTextBase.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/GroupBase.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] 4612: Flex SDK Bug Fix - Added scaleGrid support to BitmapGraphic

    Revision: 4612
    Author: [email protected]
    Date: 2009-01-21 16:58:51 -0800 (Wed, 21 Jan 2009)
    Log Message:
    Flex SDK Bug Fix - Added scaleGrid support to BitmapGraphic
    SDK-17289 - BitmapGraphic source embed does not respect scale9 grid when scaling
    BitmapGraphic will use the scaleGrid properties defined on its embedded source. Since the Player doesn't support scaleGrid on bitmaps, we have to slice the bitmap into nine sections and then scale/translate each section. We create two arrays of points along the grid. These are used to define the topLeft and bottomRight corners of the section. Based on the internal scaleFactor and which section we are in, we draw a scaled and translated section according to the scaleGrid rules.
    More details:
    - Changed BitmapGraphic to no longer use the BitmapFill to draw. Instead, BitmapGraphic performs the drawing code itself.
    - When the source is set, check if it has scaleGrid properties and store these in internal variable
    - Cache the creation of the 16 grid points array. Flush the cache if the source or dimensions have changed
    - To see this behavior in action, set width/height to different values than the source's natural dimensions and set resizeMode = "scale"
    QE Notes: Add tests for BitmapGraphic with embedded assets using scaleGrid
    Doc Notes: Add docs for this functionality
    Bugs: SDK-17289
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17289
    http://bugs.adobe.com/jira/browse/SDK-17289
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/BitmapGraphic.as

  • [svn] 4624: Flex SDK Bug Fix - Add snapshot support for 3D transformed GraphicElements

    Revision: 4624
    Author: [email protected]
    Date: 2009-01-22 13:15:17 -0800 (Thu, 22 Jan 2009)
    Log Message:
    Flex SDK Bug Fix - Add snapshot support for 3D transformed GraphicElements
    SDK-17362 - GraphicElement.getBitmapData doesn't handle 3D transforms
    Added in support to take a bitmap snapshot of a 3D transformed GraphicElement.
    Added a flag to getBitmapData to return a bitmap of the target either in the local or global coordinate space.
    Also, fixed a bug in the bitmap snapshot logic for a 2D GraphicElement that was sharing its displayObject.
    Note that the 3D snapshot isn't accurate if you have set maintainProjectionCenter on an ancestor. There are also limitations when rotation is applied. In addition, getting a local 3D snapshot isn't too accurate once you start scaling ancestors.
    QE Notes: Add mustella tests for getBitmapData
    Doc Notes: Document that getBitmapData now supports 3D transforms
    Bugs: SDK-17362
    Reviewer: Evtim
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17362
    http://bugs.adobe.com/jira/browse/SDK-17362
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/GraphicElement.a s

    FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

  • Flex sdk 4.1.0.16076 is not open source

    Ref: http://opensource.adobe.com/svn/opensource/flex/sdk/tags/
    The Open Source of flex sdk 4.1.0.16076 is missing from the official archive.
    There is also no README explaining why it is missing.
    SB

    The main event (MAX 2011) is next October, and "360 flex keynotes" do not seem to have an archive. Please post the relevant URL asap. Thank you. --SB

  • Xcelsius 2008 and Flex SDK

    Hello all,
    I'm new to Xcelsius and Flex SDK and I don't get any information about that:
    For what do I exactly need Flex SDK? Only if I want to implement a new template for Xcelsius like a "better" property-panel?
    I also want to know, when I want to store data out of my dashboard, can I use and handle them directly in a Web Dynpro environment?
    Does anyone have experience with that or could help?
    Thanks in advance
    best wishes, Bonita

    Hi Bonita,
    Xcelsius provides standard set of visual components, but in some situation we might need some functionality that is note there in standard set of components. That is where flex comes into picture with the help of Flex SDK we can develop custom components and then use the Xcelsius SDK to compile and use that as an add on inside Xcelsius. Custom build components are also available in marketplace (we can opt from a large set of variants, developed in Flex & Xcelsius SDK). Flex coding is mostly done in MXML and events are Handeled with Action Script.
    Note : We need Flex SDK along with Xcelsius SDK only when we need to create some custom component. Xcelsius SDK can be downloaded from SAP Website or can be installed during Setup installation.
    Data can be exported out of Xcelsius with the help of External Interface connection. Sample is available in the extracted installation file. Data exchange is Handeled with scripting language. Don't know Web Dynpro  environment supports the scripting or not.
    Good Luck

  • Flashbuilder 4 giving problem in flex sdk 4.5.0 and 4.5.1

    Hi,
    I have flash builder 4 installed in windows xp OS.
    While developing AIR application in flash builder + flex sdk 4.0 it is fine and showing the application windows.
    But when i use flex 4.5.0 or flex 4.5.1 sdk the window doesnot show.
    After i have changed the workspace it gives the following problem.
    Process terminated unexpectedly.
    error while loading initial content
    Launch command details:
    "C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\4.5.1\bin\adl.exe" -runtime
    "C:\Program Files\Adobe\Adobe Flash Builder 4\sdks\4.5.1\runtimes\air\win"
    "C:\Documents and Settings\sudhansu_rana\Adobe Flash Builder 4\TestAir\bin-debug\TestAir-app.xml"
    "C:\Documents and Settings\sudhansu_rana\Adobe Flash Builder 4\TestAir\bin-debug"
    Thanks
    Sudhansu

    Update your XCode to 4.3.2
    Your question should be in developer forum
    Developer Forums

  • [svn] 1531: update the flex-sdk-description to 3.0.1

    Revision: 1531
    Author: [email protected]
    Date: 2008-05-02 08:38:50 -0700 (Fri, 02 May 2008)
    Log Message:
    update the flex-sdk-description to 3.0.1
    update the manifest variables so the versions will be in sync with the description file
    bug: https://bugs.adobe.com/jira/browse/SDK-15416
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15416
    Modified Paths:
    flex/sdk/branches/3.0.x/build.properties

    Hi,
    Have you tried updating to Flex Builder 3.0.2 and then using Flex SDK 3.5?
    Updates are available here: http://www.adobe.com/support/flex/downloads_updaters.html#flex3
    Alternatively, Flash Builder 4 also provides full support for Flex SDK 3.5.
    Thanks,
    Andrew
    Senior Product Manager, Flash Builder

  • [svn] 762: -update the 3.0 branch to use build. properties to create the flex-sdk-description.xml

    Revision: 762
    Author: [email protected]
    Date: 2008-03-10 07:44:49 -0700 (Mon, 10 Mar 2008)
    Log Message:
    -update the 3.0 branch to use build.properties to create the flex-sdk-description.xml
    Modified Paths:
    flex/sdk/branches/3.0.x/build.properties
    flex/sdk/branches/3.0.x/build.xml
    Added Paths:
    flex/sdk/branches/3.0.x/collateral/en_US/flex-sdk-description.xml

    By the way, simply adding the quotes around the lexical names in the sql statement doesn't work. That causes the lexical references to be ignored as simple string values:
    SELECT
       '&FLEX_GL_BALANCING_APROMPT' alias_gl_balancing_aprompt
      ,'&FLEX_GL_ACCOUNT_LPROMPT'   alias_gl_account_lprompt
      ,'&ACCT_BAL_LPROMPT'          alias_acct_bal_lprompt
    FROM dualI turned on statement-level debugging via xdodebug.cfg and saw how it compiled the lexicals. By replicating the call to apps.fnd_flex_xml_publisher_apis.kff_segments_metadata that I found there, I was able to hack together a workaround for this issue.
    Please point me to a better way of doing this if possible, as I had to GRANT EXECUTE on this apps package to my custom code schema. Is there a better lexical/flexfields reference than the XML Publisher documentation?
    Here is the call I made in my before-report trigger:
    --set ACCT_BAL_LPROMPT flexfield segment metadata lexical
    begin
    apps.fnd_flex_xml_publisher_apis.kff_segments_metadata(
      'FLEX_ACCT_BAL_LPROMPT',
      'SQLGL',
      'GL#',
      101,
      'GL_BALANCING',
      'Y',
      'LEFT_PROMPT',
      c_FLEX_ACCT_BAL_LPROMPT
    end;

  • [svn:fx-trunk] 20696: update build. properties values that are used for flex-sdk-description.xml.

    Revision: 20696
    Revision: 20696
    Author:   [email protected]
    Date:     2011-03-08 14:09:49 -0800 (Tue, 08 Mar 2011)
    Log Message:
    update build.properties values that are used for flex-sdk-description.xml. release.version = 4.5.1 release = Superhero
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer: lauren
    Tests run: no
    Is noteworthy for integration: most likely FB will have to be aware of this
    Modified Paths:
        flex/sdk/trunk/build.properties

    Thats good news.

  • [svn:fx-trunk] 12087: Dev only. Checking in Flash Builder 4 " Library Projects" for building Flex SDK SWCs in trunk.

    Revision: 12087
    Revision: 12087
    Author:   [email protected]
    Date:     2009-11-21 20:56:09 -0800 (Sat, 21 Nov 2009)
    Log Message:
    Dev only. Checking in Flash Builder 4 "Library Projects" for building Flex SDK SWCs in trunk. These projects are easier to import and do not require linked resource variables to be specified.
    Note: although the trunk does not build textLayout.swc, there appears to be a legitimate compiler error in FlowGroupElement.as as a cast is missing. I'll follow up with TLF.
    QE notes: N/A
    Doc notes: N/A
    Bugs: N/A
    Reviewer: N/A
    Tests run: N/A
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airframework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airframework/.project
        flex/sdk/trunk/frameworks/projects/airframework/.settings/
        flex/sdk/trunk/frameworks/projects/airframework/.settings/org.eclipse.core.resources.pref s
        flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airspark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airspark/.project
        flex/sdk/trunk/frameworks/projects/airspark/.settings/
        flex/sdk/trunk/frameworks/projects/airspark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/flex/.project
        flex/sdk/trunk/frameworks/projects/flex/.settings/
        flex/sdk/trunk/frameworks/projects/flex/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/framework/.project
        flex/sdk/trunk/frameworks/projects/framework/.settings/
        flex/sdk/trunk/frameworks/projects/framework/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/halo/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/halo/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/halo/.project
        flex/sdk/trunk/frameworks/projects/halo/.settings/
        flex/sdk/trunk/frameworks/projects/halo/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/osmf/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/osmf/.project
        flex/sdk/trunk/frameworks/projects/osmf/.settings/
        flex/sdk/trunk/frameworks/projects/osmf/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/rpc/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/rpc/.project
        flex/sdk/trunk/frameworks/projects/rpc/.settings/
        flex/sdk/trunk/frameworks/projects/rpc/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/spark/.project
        flex/sdk/trunk/frameworks/projects/spark/.settings/
        flex/sdk/trunk/frameworks/projects/spark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.project
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/textLayout/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.project
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.project
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/org.eclipse.core.resources.prefs

    Status Update - don't know if this is a bug, design flaw, install problem or my misunderstanding.
    I got it to work by first changing my Flex library to 4.5.0 - still didn't work with current
    app and update mxml files using "2.6" for their namespace versions. But I did at least
    get the popup error number 16815 - indicating an error in the update version namespace.
    By leaving my application namespace version at "2.6" and changing the update version to "2.5" ... bingo!
    I got my new update installed autiomatically.
    Is this how it's supposed to work - or are my runtimes mixed up?
    Will this work the same using the Flex 4.5.1 SDK? I'll find out shortly
    Hope this helps others.

  • [svn:fx-trunk] 5224: Flex SDK Bug Fixes

    Revision: 5224
    Author: [email protected]
    Date: 2009-03-10 14:06:53 -0700 (Tue, 10 Mar 2009)
    Log Message:
    Flex SDK Bug Fixes
    SDK-19772 Initially invisible graphic element can not be made visible
    When visible is false, we were both setting the displayObject invisible and not drawing the graphics. When visible was then set to true, we changed the displayObject visibility, but didn't draw the graphics. The fix is to always draw the graphics when we are not sharing our displayObject. This way we simply toggle visibility on the displayObject on/off, instead of having to perform a redraw.
    SDK-19581 BitmapFill incorrectly handle source property
    Updated code to match code in BitmapGraphic. If the source is a class, we still need to check the type of the newly instantiated instance of that class.
    SDK-19085 unexpected behaviour when setting scaleX < 3 on a LinearGradient
    Internally, we no longer allow scaleX to be less than 2. Visually, this shouldn't have much impact.
    QE Notes: n/a
    Doc Notes: n/a
    Bugs: SDK-19772, SDK-19581, SDK-19085
    Reviewer: Evtim, Chet
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19772
    http://bugs.adobe.com/jira/browse/SDK-19581
    http://bugs.adobe.com/jira/browse/SDK-19085
    http://bugs.adobe.com/jira/browse/SDK-19772
    http://bugs.adobe.com/jira/browse/SDK-19581
    http://bugs.adobe.com/jira/browse/SDK-19085
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/BitmapGraphic.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/baseClasses/GraphicElement.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/BitmapFill.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/LinearGradient.as

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

  • [svn:bz-4.x] 15534: Update BlazeDS/4.x branch to build with Flex SDK4.

    Revision: 15534
    Revision: 15534
    Author:   [email protected]
    Date:     2010-04-17 05:17:40 -0700 (Sat, 17 Apr 2010)
    Log Message:
    Update BlazeDS/4.x branch to build with Flex SDK4. This branch now builds with Flex SDK4 by default. This was just a merge of changelist 15508 from BlazeDS/trunk to BlazeDS/4.x. 
    Modified Paths:
        blazeds/branches/4.x/apps/ds-console/build.xml
        blazeds/branches/4.x/apps/ds-console/console.mxml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/dashboard/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/inventory/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/runtimeconfig-messaging/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/runtimeconfig-remoting/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/testdrive-101/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/testdrive-chat/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/testdrive-datapush/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/testdrive-httpservice/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/testdrive-remoteobject/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/testdrive-update/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/testdrive-webservice/build.xml
        blazeds/branches/4.x/apps/samples/WEB-INF/flex-src/traderdesktop/build.xml
        blazeds/branches/4.x/apps/samples/build.xml
        blazeds/branches/4.x/apps/team/build.xml
        blazeds/branches/4.x/build.properties
        blazeds/branches/4.x/build.xml
        blazeds/branches/4.x/modules/proxy/build.xml
        blazeds/branches/4.x/modules/remoting/build.xml
        blazeds/branches/4.x/modules/sdk/build.xml
        blazeds/branches/4.x/qa/apps/qa-manual/build.xml
        blazeds/branches/4.x/qa/apps/qa-regress/build.xml
        blazeds/branches/4.x/qa/resources/webtier/build.xml
        blazeds/branches/4.x/qa/resources/webtier/flex_sdk_4/air-config.xml
        blazeds/branches/4.x/qa/resources/webtier/flex_sdk_4/flex-config.xml
    Added Paths:
        blazeds/branches/4.x/resources/flex_sdk/dmv/
        blazeds/branches/4.x/resources/flex_sdk/dmv/datavisualization.swc
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/en_US/
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/en_US/datavisualization_rb.swc
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/ja_JP/
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/ja_JP/datavisualization_rb.swc
    Removed Paths:
        blazeds/branches/4.x/apps/team/WEB-INF/flex/flex-config.xml
        blazeds/branches/4.x/apps/team/WEB-INF/flex/flex-webtier-config.xml
        blazeds/branches/4.x/frameworks/libs/datavisualization.swc
        blazeds/branches/4.x/frameworks/locale/en_US/
        blazeds/branches/4.x/frameworks/locale/ja_JP/
        blazeds/branches/4.x/resources/flex_sdk/dmv/datavisualization.swc
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/en_US/
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/en_US/datavisualization_rb.swc
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/ja_JP/
        blazeds/branches/4.x/resources/flex_sdk/dmv/locale/ja_JP/datavisualization_rb.swc

  • [svn:fx-4.x] 14640: updating the ignore patterns for frameworks/libs, projects/automation_airspark, and rsls

    Revision: 14640
    Revision: 14640
    Author:   [email protected]
    Date:     2010-03-09 06:44:21 -0800 (Tue, 09 Mar 2010)
    Log Message:
    updating the ignore patterns for frameworks/libs, projects/automation_airspark, and rsls
    QE notes: no
    Doc notes: no
    Bugs: sdk-25755
    Reviewer: carol
    Tests run: no
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-25755
    Property Changed:
        flex/sdk/branches/4.x/frameworks/libs/
        flex/sdk/branches/4.x/frameworks/projects/automation_airspark/
        flex/sdk/branches/4.x/frameworks/rsls/

    Thats good news.

Maybe you are looking for