Category: Adobe Flex

How to install Adobe Air in Ubuntu 12.04?

This steps will help you to install adobe air in ubuntu 12.04. In terminal, run the following command one by one: sudo apt-add-repository “deb http://archive.canonical.com/ $(lsb_release -sc) partner” sudo apt-get update && sudo apt-get install flashplugin-installer Next, run the commands below to download Adobe Air executable. wget http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin Then run the commands below to change the …

Continue reading

Permanent link to this article: https://blog.openshell.in/2013/02/how-to-install-adobe-air-in-ubuntu-12-04/

create windowed applications with no system chrome

To  build a AIR application with custom window(which has your own shape), try the fallowing: In the <project_root>/src folder, open the XML file named “<your_project_name>-app.xml” and modify the two lines: <!–<systemChrome>none</systemChrome>–> to <systemChrome>none</systemChrome> and <!–<transparent></transparent>–> to <transparent>true</transparent> Then in your main page, <mx:WindowedApplication xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute” showFlexChrome=”false”> <mx:Script> <![CDATA[ public function startMove(event:MouseEvent):void { stage.nativeWindow.startMove(); } ]]> …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/create-windowed-applications-with-no-system-chrome/

Accessing parent documents in Flex

It will achieved by Application and Doccument object Application object has the following characteristics: * Application objects are MXML files with an <mx:Application> tag. * Most Flex applications have a single Application object. * The Application file is the first file loaded. * An Application object is also a Document object. * You can refer …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/11/accessing-parent-documents-in-flex/