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

  1. Not yet rated

    How do I use color transforms in FXG?

    The ColorTransform class lets you adjust the color values in a display object. The color adjustment or color transformation can be applied to all four channels: red, green, blue, and alpha transparency. It has various properties for the color adjustment like redMultiplier, greenMultiplier, blueMult ...

  2. Not yet rated

    Communication to javascript from flex

    Using ExternalInterface class we can call javascript method from flex and also javascript can call actionscript method. Using ExternalInterface.addCallback and ExternalInterface.call method we can do that. if ExternalInterface is available.

  3. Not yet rated

    How do I perform a multicolumn sort in a Spark DataGrid?

    i have used SortField and Sort. I have created two way to sort the column in datagrid.

  4. Not yet rated

    What is the most efficient way to represent data on a grid i ...

    I have created an example in which only unique vaue is used for the datagrid from the dataprovider. Use unique value functionality for updated data(collection) before setting dataprovider to datagrid.

  5. Not yet rated

    How can I use Typekit fonts in a WebKit view in AIR?

    Using <iframe> and setting the documentRoot and sandboxRoot, you also have to load Typekit script.

  6. Not yet rated

    I'm new to ActionScript 3, what is the best practice for cla ...

    Private , Public, Protected, Override and others are access modifiers for the OOP language, and each have a different meaning and usages. I have mention some of access modifiers description below.

  7. Avg. Rating 4.0

    Exploring SQLite database in Adobe AIR

    Using SQLConnection and various SQL schema class I have explore SQLite DB class.

  8. Not yet rated

    Set splash screen to mobile application

    In ViewNavigatorApplication tag, using "splashScreenImage" property we can provide a splash screen to mobile application. There is also various modes available for the splash screen that we can set using the splashScreenScaleMode property.

  9. Avg. Rating 3.5

    Simple Flex mobile application

    Using "navigator.pushView" and "navigator.popView" a application view navigation is happen. Data is also passed using navigator.pushView method to the second view. We can also use more method of navigator to make easy navigation of application view like direct home page.

  10. Avg. Rating 4.0

    Check user idle in application

    Using FlexEvent.IDLE event of systemManager and 'idleCounter' we can detect the user idleness.