Not finding what you are looking for? Request a recipe!
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.
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.
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.
The decision was to use the SOCKET. Using SOCKET you can send any type of HTTP requests and working with responses.
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.
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.
Make a handler for "win" key on application start-up.
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.
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 ...
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.