Not finding what you are looking for? Request a recipe!

  1. Avg. Rating 5.0

    Can you provide an example of how to create a linear and rad ...

    This is pretty simple, and you should not be afraid of using Matrix. Also remember that gradient sizes and position are controlled by matrix, not by shape size.

  2. Avg. Rating 5.0

    Flash Builder 4 beta 2: This file cannot be launched

    There are 2 solutions: 1. Worst solution: recreate mxml application file and copy-paste content from old file; 2. Best solution: manually add application in to project configuration.

  3. Avg. Rating 5.0

    Upload multiple files using URLLoader by 1 user action

    Was created a class to construct multipart/form-data request with more than 1 file data in it, and upload several files using 1 request and 1 user action.

  4. Avg. Rating 4.2

    Resume download in AIR via SOCKET

    The decision was to use the SOCKET. Using SOCKET you can send any type of HTTP requests and working with responses.

  5. Avg. Rating 4.2

    ComboBox: Event bubbling from custom itemRenderer

    Common way to listen events with bubbling from itemRenderer of som UI component is not works for the ComboBox. Because of ComboBox is complex UI component, it consist of TextField and DropDown. So all events from itemRenderer must be handled on ComboBox dropDown.

  6. Avg. Rating 3.8

    Seamless tabbing with Internet Explorer

    A little recipe in order to overcome the loss of focus in IE when navigating within the Flex application using the Tab button. All you need do is set the parameter.

  7. Avg. Rating 3.7
  8. Avg. Rating 3.5

    Embedding JW Player Version 5 into Flex

    You just need to overlap original RootReference class with your own, when loading player in to your Flex application. You don't need to get JW Player source code from SVN and fix it to apply this solution, but this is one of the approach.

  9. Avg. Rating 3.3

    Creating multiselect using one event

    Each item is listening to SELECTED event, in its handler all items setting themselves as not selected. When item is selected by user, or maybe script, system calls item method. In this method, we remove event listener for SELECTED event, setting this item as selected, dispatch ItemDeselect event and ...

  10. Avg. Rating 3.0

    Trick to fix encoding in soap.Operation and Flash Player 10

    The solution is not very pretty but it works for me. The solution is to set a "dumb" xmlSpecialCharsFilter and to encode params manually. Note: As far as I know in 3.4.0 SDK this issue will be fixed.