[svn:fx-3.x] 5820: Merged (back ported) trunk revisions 4460,4492,4516,4520 ,4585,4630,4692,4726,4964 - 3.x

Revision: 5820
Author: [email protected]
Date: 2009-03-31 13:40:12 -0700 (Tue, 31 Mar 2009)
Log Message:
Merged (back ported) trunk revisions 4460,4492,4516,4520,4585,4630,4692,4726,4964 -> 3.x
http://10.171.12.252/svn/opensource/flex/sdk/trunk
r4460 | [email protected] | 2009-01-08 20:53:33 -0500 (Thu, 08 Jan 2009) | 10 lines
Renamed UIComponentAccImpl to UIComponentAccProps because it extends AccessibilityProperties, not AccessibilityImplementation.
Added comments with the identifier for each magic role constant, so that it is easier to understand what roles our components are using.
Moved two static methods from UIComponentAccProperties to AccImpl because they make more sense there.
QE Notes: None
Doc Notes: None
Bugs: None
Reviewer: None (no functional changes)
r4492 | [email protected] | 2009-01-12 17:47:10 -0500 (Mon, 12 Jan 2009) | 8 lines
Simplified how an accessibility class gets hooked into its corresponding component class.
We now do the hooking in the static method enableAccessibility(), which is called by code that is autogenerated by the compiler. Previously this method did nothing and the hooking happened at static initialization time. This allows us to remove the static var accessibilityHooked and the static method hookAccessibility() in each accessibility class.
QE Notes: None
Doc Notes: None
Bugs: None
Reviewer: Deepa and Alex
r4516 | [email protected] | 2009-01-13 18:23:14 -0500 (Tue, 13 Jan 2009) | 16 lines
Accessibility changes to Panel and TitleWindow, as requested by Freedom Scientific.
These components now report their accessibility role as "grouping" rather than "window". Their accessibility name is now simply their title. They no longer report any child items. Their accessibility location is the bounding rect of the entire Panel or TitleWindow.
The AccessibilityImplementation continues to be attached to the titleBar, not to the Panel/TitleWindow, because the Flash Player ignores Sprites with an AccessibilityImplementation that are inside other Sprites with an AccessibilityImplementation. (The Flash accessibility model is flat, not hierarchical, and "child IDs" are only used for things like list items, not for controls in titled container.)
So although in the display hierarchy the Panel is a parent of its content controls, in the MSAA model it appears as their preceding sibling. JAWS will look at the "grouping" role and understand that because the bounding rect of the grouping includes some of its following siblings, they are "inside". (I don't know what this means in terms of what JAWS will actually speak.)
Also, the AccImpl class now implements getChildIDArray() to return an empty array, so that by default all components have 0 child items (rather than reporting an error).
Finally, subclasses with child items now compute how many they have and then call a new AccImpl utility method, createChildIDArray(), to create an Array that looks like [ 1, 2, 3, 4, 5 ].
QE Notes: None
Doc Notes: None
Bugs: SDK-12390, SDK-16340
Reviewer: Deepa
r4520 | [email protected] | 2009-01-13 20:07:53 -0500 (Tue, 13 Jan 2009) | 10 lines
Accessibility changes to List, DataGrid, Menu, and Tree, as requested by Freedom Scientific, to behave more like their corresponding standard Windows controls.
List, DataGrid, and Menu no longer report an accessibility value, either for the control itself or for its child items.
Tree no longer reports a value value for itself. For tree items the value is the indentation level as a String: "0", "1", "2", etc. Previously the top-level items had value "1" instead of "0".
QE Notes: None
Doc Notes: None
Bugs: SDK-17755
Reviewer: Deepa
r4585 | [email protected] | 2009-01-19 18:53:01 -0500 (Mon, 19 Jan 2009) | 6 lines
AccImpl now implements accSelect(). Although the implementation doesn't do anything, its existence is enough to avoid having the Player report an IAccessible "member not found" error when calling accSelect() on a child item.
QE Notes: None
Doc Notes: None
Bugs: SDK-16654
Reviewer: Jason
r4630 | [email protected] | 2009-01-22 19:54:13 -0500 (Thu, 22 Jan 2009) | 6 lines
Removed code in AccordionHeaderAccImpl and TabBarAccImpl where the child IDs were being adjusted up or down by 100000 for some unknown reason. Deneb (on Flash Player) and Nataliya and Jon (on JAWS) don't think this should be done.
QE Notes: None
Doc Notes: None
Bugs: None
Reviewer: Deepa
r4692 | [email protected] | 2009-01-27 17:13:03 -0500 (Tue, 27 Jan 2009) | 9 lines
Fixed missing or misplaced 'break' statements in the eventHandler() methods of the mx.accessibility classes. These have probably been causing some unintented MSAA events to be dispatched.
Also, each accessible component now dispatches OBJ_NAMECHANGE when its toolTip or errorString property changes, because the MSAA name includes the tooltip or error tip.
QE Notes: None
Doc Notes: None
Bugs: None
Reviewer: Deepa
r4726 | [email protected] | 2009-01-28 21:47:59 -0500 (Wed, 28 Jan 2009) | 16 lines
Accessibility changes to the MSAA name of several components, as requested by Freedom Scientific. These changes make Flex controls behave more like standard Windows controls.
In Accordion and TabBar, the name is now just what is displayed, without " Tab" or " Tab, Active" appended.
In ComboBox, List, and Tree, the name of each item is now just what it displays, without, for example, "2 of 7" appended.
Removed an artificial limit of 100000 items in List and Menu.
A Slider with an MXML id no longer returns that id as its name; no other component does this and id's are certainly no intended to be spoken.
Removed the getName() method of ComboBase, which isn't used.
QE Notes: None
Doc Notes: None
Bugs: None
Reviewer: Jason
r4964 | [email protected] | 2009-02-16 12:41:50 -0500 (Mon, 16 Feb 2009) | 7 lines
Modify AccImpl.as to add @private to _protected final function $eventHandler(event:Event):void_ to work around an ASdoc bug. i will remove it when the bug gets fixed.
QE Notes: None
Doc Notes: None
Bugs: -
Ticket Links:
http://bugs.adobe.com/jira/browse/SDK-12390
http://bugs.adobe.com/jira/browse/SDK-16340
http://bugs.adobe.com/jira/browse/SDK-17755
http://bugs.adobe.com/jira/browse/SDK-16654
Modified Paths:
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AccordionHeaderA ccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AlertAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ButtonAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/CheckBoxAccImpl. as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ColorPickerAccIm pl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ComboBaseAccImpl .as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ComboBoxAccImpl. as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/DataGridAccImpl. as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/DateChooserAccIm pl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/DateFieldAccImpl .as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/LinkButtonAccImp l.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ListAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ListBaseAccImpl. as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/MenuAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/MenuBarAccImpl.a s
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/PanelAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/RadioButtonAccIm pl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/SliderAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/TabBarAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/TitleWindowAccIm pl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/TreeAccImpl.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/containers/Panel.as
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/core/UIComponent.as
Added Paths:
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/UIComponentAccPr ops.as
Removed Paths:
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/UIComponentAccIm pl.as
Property Changed:
flex/sdk/branches/3.x/

Similar Messages

  • [svn:fx-trunk] 13956: -Block 4.0. 0 revision 13860 from being merged back to trunk

    Revision: 13956
    Revision: 13956
    Author:   [email protected]
    Date:     2010-02-03 07:16:19 -0800 (Wed, 03 Feb 2010)
    Log Message:
    -Block 4.0.0 revision 13860 from being merged back to trunk
    -fixed mac flash player property value; removed debugger part
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer: no
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/build.xml
    Property Changed:
        flex/sdk/trunk/

    Revision: 13956
    Revision: 13956
    Author:   [email protected]
    Date:     2010-02-03 07:16:19 -0800 (Wed, 03 Feb 2010)
    Log Message:
    -Block 4.0.0 revision 13860 from being merged back to trunk
    -fixed mac flash player property value; removed debugger part
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer: no
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/build.xml
    Property Changed:
        flex/sdk/trunk/

  • [svn:fx-4.x] 14953: * Merged 14622 from trunk to 4.x.

    Revision: 14953
    Revision: 14953
    Author:   [email protected]
    Date:     2010-03-23 13:17:02 -0700 (Tue, 23 Mar 2010)
    Log Message:
    Merged 14622 from trunk to 4.x.
    QE notes:
    Doc notes:
    Bugs: SDK-25918, SDK-25619 (SDK-25206)
    Reviewer: pfarland
    Tests run: checkintests in 4.x, full cyclone in trunk
    Is noteworthy for integration: yes, fixes issues only seen in FB.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25918
        http://bugs.adobe.com/jira/browse/SDK-25619
        http://bugs.adobe.com/jira/browse/SDK-25206
    Modified Paths:
        flex/sdk/branches/4.x/modules/compiler/src/java/flex2/compiler/CompilerAPI.java
        flex/sdk/branches/4.x/modules/compiler/src/java/flex2/compiler/media/FontTranscoder.java
    Property Changed:
        flex/sdk/branches/4.x/

  • [svn:bz-3.x] 20443: back porting bug fix BLZ-570/ BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error  : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError .

    Revision: 20443
    Revision: 20443
    Author:   [email protected]
    Date:     2011-02-23 21:19:22 -0800 (Wed, 23 Feb 2011)
    Log Message:
    back porting bug fix BLZ-570/BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError. the default max object nest level is 1024 and it can be configured in the endpoint/serialziation section in service-config.xml. This needs documentation.  Checkintests pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-570
        http://bugs.adobe.com/jira/browse/BLZ-620
    Modified Paths:
        blazeds/branches/3.x/modules/common/src/java/flex/messaging/errors.properties
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/endpoints/AbstractEndpoint.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/SerializationContext.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/AmfIO.java

  • [svn:fx-3.x] 12023: Back-porting a fix for Mike M.

    Revision: 12023
    Revision: 12023
    Author:   [email protected]
    Date:     2009-11-19 17:37:22 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Back-porting a fix for Mike M. for FB-21917 from trunk to get this into 3.5.
    QE notes: SDK QE not really, FB QE please test bug scenario on integration.
    Doc notes: N/A
    Bugs:
    FB-21917 - Building project with large number of embedded assets will eventually cause Flex Builder to exit without warning.
    Reviewer: Mike M.
    Tests run: Checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-21917
        http://bugs.adobe.com/jira/browse/FB-21917
    Modified Paths:
        flex/sdk/branches/3.x/modules/swfutils/src/java/flash/swf/SwfEncoder.java

    Create a VI with a Waveform Graph on the front panel. On the block diagram, insert a Read From Spreadsheet File function. Connect the All Rows output to the Waveform Graph.
    Attachments:
    Graph.jpg ‏3 KB

  • Have 2 airport extreme base stations connected in chain.  Airport utility shows slave unit without power. However, power is on slave unit, but status lights do not show up at all. Small green lights at each back port blink.  Anyone have any ideas?

    Have 2 airport extreme base stations connected in chain.  Airport utility shows slave unit without power. However, power is on slave unit, but status lights do not show up at all. Small green lights at each back port blink.  Anyone have any ideas?

    Unfortunately, you are describing the symptoms of an AirPort Extreme with a failing (or failed) internal power supply.
    As a last resort, try a Factory Default Reset on the AirPort Extreme as follows:
    Power off the AirPort by pulling the power cord
    Wait a minute or two
    Hold in the reset button first, and keep holding it in for an additional 8-10 seconds while you simultaneously plug the power back into the AirPort
    Release the reset button and allow a full minute for the AirPort to restart
    Now try to configure the AirPort again.  If you continue to see the same symptoms as before, the AirPort will need to be replaced.

  • Itunes music being separated in multiple cds how do you correct or merge back to org recording

    how do you merge back to org recording....

    This article may  help you
    http://support.apple.com/kb/TS1468?viewlocale=en_US&locale=en_US

  • [svn] 4895: init merge tracking on trunk 1-4816.

    Revision: 4895
    Author: [email protected]
    Date: 2009-02-09 06:41:23 -0800 (Mon, 09 Feb 2009)
    Log Message:
    init merge tracking on trunk 1-4816. Will only be cherry picking trunk changes to be merged down, no mass merges will happen to this branch.
    Property Changed:
    flex/sdk/branches/i10/

    oops I meant (svn merge trunk sandbox), not (svn merge trunk local)

  • Whether the fix(in Bug 883973 - crash in JSFunction::getExistingScript) is indeed being back-ported to a Firefox 24.x ESR release?"

    Please continue with the existing question Firefox crashes [/questions/990856#answer-547733]
    whether the fix(in Bug 883973 - crash in JSFunction::getExistingScript) is indeed being back-ported to a Firefox 24.x ESR release?"

    Please continue with the existing question ''Firefox crashes'' [/questions/990856#answer-547733]
    '' whether the fix is indeed being back-ported to a Firefox 24.x ESR release? ''
    I will close this as a duplicate.
    To answer this you should of course try the latest Firefox 24.4 esr not the plain Firefox 24 from the Release channel.

  • [svn:bz-4.0.0_fixes] 16633: Merge fix from trunk

    Revision: 16633
    Revision: 16633
    Author:   [email protected]
    Date:     2010-06-23 07:55:57 -0700 (Wed, 23 Jun 2010)
    Log Message:
    Merge fix from trunk
    Bugs: Watson #2632745 - Edge server to lcds server connection leak.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This is the BlazeDS part of the fix, there will be an LCDS part as well.
    This wasn't an Edge Server bug per say, the real bug goes as follows:
    -Take a messaging sample that uses RTMP.
    -Connect and subscribe the Consumer to the destination.
    -Get Message Generator stream messages to the destination.
    -Close the browser window.
    -At this point, you?\226?\128?\153d expect the FlexClient to time out (after 5 seconds if no FlexClient timeout is defined, or as specified by FlexClient timeout) which should time out the RTMPFlexSession. However, FlexClient does not time out because Message Generator is wrongly keeping the FlexClient alive as it?\226?\128?\153s pushing messages to it.
    The bug is scattered across FlexClient.java class but mainly in FlexClient#push method. This method calls FlexClient#updateLastUse at the beginning of the method but what it should do is to delay FlexClient#updateLastUse until  the message is actually written to the network (which won?\226?\128?\153t be the case when the browser window is closed, hence FlexClient will time out as expected).
    This has an important side-effect for the Edge Server. When RTMP is in use, and there?\226?\128?\153s a stream of messages from Message Generator to a Flex client, when the browser window is closed, the connection between the Flex client and the Edge Server is cleaned up correctly, but the connection between the Edge Server and the backing App Server on behalf of the FlexClient stays open due to FlexClient not timing out, until the message streaming stops.
    The fix is to not call FlexClient#updateLastUse right away in FlexClient#push, and delay it when we actually know that the message is written to the client.
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/client/FlexClient.java

  • [svn] 1785: Merge 3.0.x revisions [1728,1739,1775] - trunk

    Revision: 1785
    Author: [email protected]
    Date: 2008-05-20 07:13:35 -0700 (Tue, 20 May 2008)
    Log Message:
    Merge 3.0.x revisions [1728,1739,1775] -> trunk
    -the default player has been reverted back to player 9 and updated from 115 to 124
    -player 10 218 can be found in the player/10 directory
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DateField.as
    flex/sdk/trunk/in/player/lnx/flashplayer.tar.gz
    flex/sdk/trunk/in/player/lnx/libflashplayer.so.tar.gz
    flex/sdk/trunk/in/player/mac/Flash Player.app.zip
    flex/sdk/trunk/in/player/win/FlashPlayer.exe
    Added Paths:
    flex/sdk/trunk/in/player/10/
    flex/sdk/trunk/in/player/10/lnx/
    flex/sdk/trunk/in/player/10/mac/
    flex/sdk/trunk/in/player/10/win/
    Removed Paths:
    flex/sdk/trunk/in/player/10/lnx/
    flex/sdk/trunk/in/player/10/mac/
    flex/sdk/trunk/in/player/10/win/
    Property Changed:
    flex/sdk/trunk/

  • [svn] 1579: Merge 1578 to trunk.

    Revision: 1579
    Author: [email protected]
    Date: 2008-05-06 12:30:10 -0700 (Tue, 06 May 2008)
    Log Message:
    Merge 1578 to trunk.
    Modified Paths:
    blazeds/trunk/apps/team/WEB-INF/flex/messaging-config.xml
    blazeds/trunk/apps/team/WEB-INF/flex/services-config.xml
    Added Paths:
    blazeds/trunk/apps/team/features/messaging/messaging_AMF_Piggyback.mxml
    blazeds/trunk/apps/team/features/messaging/messaging_HTTP_Piggyback.mxml

  • [svn] 4316: Merge to BlazeDS trunk.

    Revision: 4316
    Author: [email protected]
    Date: 2008-12-15 15:59:05 -0800 (Mon, 15 Dec 2008)
    Log Message:
    Merge to BlazeDS trunk.
    Fix for missing fault events at connect time for MessageAgents with needsConfig flags set true before connecting.
    QA: Related to fixes by Jeff for LCDS-542, LCDS-541, LCDS-540, LCDS-539
    Doc: No
    Checkintests Pass: Yes
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-542
    http://bugs.adobe.com/jira/browse/LCDS-541
    http://bugs.adobe.com/jira/browse/LCDS-540
    http://bugs.adobe.com/jira/browse/LCDS-539
    Modified Paths:
    blazeds/trunk/frameworks/local-swcs/rpc.swc

  • [svn] 1397: Merge 1396 from trunk to 3.0.x

    Revision: 1397
    Author: [email protected]
    Date: 2008-04-24 13:34:14 -0700 (Thu, 24 Apr 2008)
    Log Message:
    Merge 1396 from trunk to 3.0.x
    Added Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/Log/
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/Log/LogMBeans.mxm l
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/Log/MBeanFunction s.as
    Removed Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/Log/
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/Log/LogMBeans.mxm l
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/MBean/Log/MBeanFunction s.as

  • [svn] 1463: merge 1461 from trunk to 3.0.x

    Revision: 1463
    Author: [email protected]
    Date: 2008-04-29 14:17:51 -0700 (Tue, 29 Apr 2008)
    Log Message:
    merge 1461 from trunk to 3.0.x
    Modified Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/flex/remoting-config.mods.xml
    Added Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/WEB-INF/src/blazeds/qa/remotingService/ImageSna pshotType.java
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureBitmapData.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImage.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageJPEG.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedFalse.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedFalseJPEG.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedTrue.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedTrueJPEG.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testEncodeImageAsBase64.mxml
    Removed Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureBitmapData.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImage.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageJPEG.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedFalse.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedFalseJPEG.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedTrue.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testCaptureImageScaleLimitedTrueJPEG.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTyp es/ImageSnapshot/testEncodeImageAsBase64.mxml

Maybe you are looking for