air

Problem while loading a module inside another in Flex.

Hi, I am facing this problem with my AIR application. In my main application I have a main module loader(mainModuleLoader). In this I'll be loading different modules. At one point in my application this mainModuleLoader will dynamically load another module subModule.swf. This subModule again has a module loader subModuleLoader it will ...

Getting Hello World in AIR to install

I have an AIR application that is the following: <h1>Hello World</h1> It runs on my local machine: C:\inetpub\wwwroot\AIR\HelloWorldDestination.air And it runs if I choose "preview in Adobe AIR" in Dreamweaver. But I can't get it to download and install from my website. Here is the application.xml that Dreamweaver created: <?xml ve...

How do you stop an AIR application?

At 1 minute into the "See it in action" video, Paul stops the program from running. What button did he push to do so? ...

Flash Projector with multiple windows, each with a new flashPlayer instance.

Does anyone know of a flash projector 'project' or 'framework' that uses a new flashPlayer for each window? We've used mProjector, which works well to a point, but I'm very disappointed in the fileIO patterns they use. It is very buggy with regard to reading and writing files. mdm zinc uses multiple windows, but it is all sits on one ...

AIR 2 app vs Silverlight 4 out-of-browser app?

Anyone released any Silverlight 4.0 out-of-browser app yet? does it compare to AIR 2.0? Question about Silverlight 4, it has some webview-like control where I can write HTML+CSS right? What rendering engine does it use? What ver of CSS does it support? IE? IE7? Planning to learn either Adobe AIR or Silverlight, but have not decided...

AIR with Android Emulator?

is it possible to debug AIR applications with the Android Emulator? ...

Accessing file on remote server with Adobe Air and ColdFusion remoting

SOLVED. Dumb error. Failed to check that table specified was on remote server! I have a Flex project which uses ColdFusion remoting to access an SQL database The html/swf works fine both locally and remotely (where the coldfusion cfc is in the same folder struture as locally) I have adapted the project to an Air application. Again thi...

WCF and AIR/Flex 4 security

Dear All! In a current project we are hosting a WCF 3.5 service on IIS7 and expose the methods through basicHttpBinding to an Adobe AIR/Flex4-client. Luckily Flash Builder 4 has integrated support for SOAP, so that a service-proxy can be generated easily. Unfortunately, we are not able to find any elegant solution to enable username au...

Printing from AIR/Flex application causes large files being sent to printer

Dear friends, I am working on an Adobe AIR (2.0) application that contains a feature to allow users to print documents (such as salary slips). Those documents are originally in PDF format. Due to circumstances we cannot directly display those PDFs in the AIR application (for example using flash.html.HTMLLoader). Therefore we convert the...

Adobe Air SDK 2.0-2.5 Errors

I downloaded the Air 2.5 SDK and get the following Errors: 1-Design mode could not load aircore.swc. It may be incompatible with this SDK, or invalid. 2-Design mode could not load applicationupdater_ui.swc. It may be incompatible with this SDK, or invalid. 3-Design mode could not load applicationupdater.swc. It may be incompatible wit...

Getting storageVolume to work in JavaScript

In his blog post, Christian Cantrell shows how to use STORAGE_VOLUME_MOUNT in ActionScript. He has written a Flex app called FileTile. I would like to see a JavaScript alert box that says “You have inserted “ + e.storageVolume.name, and “You have removed a storage volume”. ...

Loading jQuery from Google into an Air project

I'm using Aptana Studio with the following source code: <html> <head> <title>New Adobe AIR Project</title> <script type="text/javascript" src="lib/air/AIRAliases.js"></script> <script type="text/javascript" src="lib/air/AIRIntrospector.js"></script> <script src="http://www.google.com/jsapi"&gt;&lt;/script&gt; <script type="text/javascri...

How do I set icons for Air for Android Settings within Flash CS5?

Hey there- I'm trying to set my own icons for Air for Android using Flash CS5. I see the icon tab within the Air Android Settings panel, but it won't let me navigate to my icons. Also, I would add the path to my manifest.xml file, but it gets overwritten while publishing. Thanks, any advice is appreciated! ...

Autoplay Adobe AIR application

Is there a way to tell Microsoft Windows to AutoPlay an Adobe AIR application? I have an AIR application on the users sd card, and I would like it to run whenever the user inserts the card into his computer. ...

How to read a file from an sd card

I have: var myFile = air.File.desktopDirectory.resolvePath("MyFile.txt"); But I need to replace desktopDirectory with e.storageVolume.rootDirectory.nativePath ...

Adobe AIR - Code Signing Error

Hi, I am trying to sign my AIR application using the Code Signing Certificate I got from Apple (iPhone Dev). I have Apple's Root Certificate and my certificate. I installed both and then exported my certificate as pkcs12 (.p12 file) using many methods like Windows Certificate Manager and Firefox. I also used Keychain Access on my Mac. H...

flex 4 air 2 NativeWindow icon

Hi, I have an app that spawns NativeWindows. I would like to assign a different icon to each native window, however, they all pick up the icon associated with the "main app". I cant see any methods on the Flex native window class to assign icons in this manner. Can anyone offer any pointers? Thanks, Franco ...

Document Oriented DB for AIR?

Today I just learned that Adobe Air has a local SQL database, which is great; however, we had been creating xml/json files to handle mostly everything. Rather than re-architect to gain a few new features it would seem useful to simply have some document oriented DB index our files. So the question is: documented oriented DB for air? ...

AS3/Flex 4: Most Practical Way To Find Nested Children

Hey guys, I'm sort of jumping in headfirst to some Flex/AIR stuff. I have a pretty solid background with AS3, but given the inherent hierarchal complexity of Flex (compared to regular Flash), I'm running into an issue. Let's assume that you have an app where pretty much everything is event driven (common). Accessing elements in the n...

Writing changes from editable datagrid back to local data store - Adobe Air/Flex

Hi I am using Adobe Air to get data from SalesForce, and present it in a datagrid. I am using a query to get the data, and then put it into an arraycollection that is bound to the datagrid, this works correctly and the data is displayed. I have made the datagrid editable, and I am able to change the values in the datagrid, but I canno...