air2

Add AIR 2 to FB4?

I downloaded and installed FB4 beta 2. I want to try out some of the new AIR 2 beta features, but AIR 2 is not packed with FB4 by default, how can I set this up? Thanks! (Also if possible I still want to be able to use FB3+AIR1 for regular projects) ...

Flex 4 & AIR 2 NativeProcess API: The NativeProcess could not be started

I'm trying to build an application using AIR 2's new NativeProcess API's going from Brent's little video: http://tv.adobe.com/watch/adc-presents/preview-command-line-integration-in-adobe-air-2 but I'm having some issues, namely I get an error every time I try to start my process. I am running OS X 10.5.8 and I want to run diskutil and...

Missing WindowedApplication chrome on Flex4 + AIR 2.0beta2

I've installed the Flex 4 SDK and overlayed it with the AIR 2.0beta2 SDK and am unable to bet the Flex chrome to show up when I try to use Spark's WindowedApplication. the simple MXML -> http://pastie.org/909375 When I use the MX WindowApplication everything works fine, but somehow I'm not getting the Spark version to work as I expect....

AIR2 NativeProcess to Java debugging

I'm using AIR2 NativeProcess API to communicate to Java process, but I don't know how to debug Java process when AIR send something to java process input, I want to continue debugging in Java (Eclipse). Is that somehow possible? ...

Does Flash Builder 4 now use AIR 2?

I just got CS5 master suite which includes Flash Builder 4 and Flash CS5 Pro. When I create a new AIR app in CS5 pro it says "AIR 2" but when I create a new AIR project in Flash Builder I do not see anything indicating that it is AIR 2 or 1.5? Is there a way to tell which AIR runtime it is using? ...

Adobe air... launch website but pick which browser?

OK I know that in Adobe Air you can call navigateToURL(new URLRequest(url)) and it will open the users default web browser to open the page. Also now in AIR 2 you can launch any application. So I am wondering if there is a way I can launch a particular browser to open a page in? ...

How to use AIR 2.0 NativeProcess API with Java?

How do you use this great new API in connection with Java? Do you use just pure native process API like nativeProcess.standardInput.write() and nativeProcess.standardOutput.read() with which you cannot debug Java side neither invoke remote java method. Or you are using some library that leverages remote method invocation such as flerry l...

Flex open window behind active window

In Flex Air app, how do you open a window behind an active one? I tried following and i can't seem to get it to work <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" ...

Run BAT file from Adobe AIR?

To package an .air file into a native installer you have to use a batch program called adt. The command on Windows will look something like this: C:\Users\jisaacks>"C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.1.0\bin\adt" -package -target native "D:\DEV\Flex4\Workspaces\AIR Native Packager\AIRNIP\AIRNIP.exe" ...

AIR2 accessing native processes

I am interested in playing around with the new nativeProcess which has been added to AIR2.0. I came across the google command line utility which allows you to do operations on google apps from the command line eg: $ google picasa create --title "My album" ~/Photos/vacation/*.jpg http://google-opensource.blogspot.com/2010/06/introduci...

how can I read the version from application descriptor file

So I have a basic application descriptor file for my AIR app. It looks something like this, shortened for sanity: <?xml version="1.0" encoding="utf-8" standalone="no"?> <application xmlns="http://ns.adobe.com/air/application/2.0"&gt; <version>1.0.10</version> </application> Now I want in the application to display the version, but I...

Air2.0, Error while accessing Native process API.

I am using native process API of Air2 in HTML/Js framework. The problem comes when i try to make object of NativeProcessStartupInfo. Here is mine code if(air.NativeProcess.isSupported){ var nativeProcessStartupInfo = new air.NativeProcessStartupInfo(); Whenever i try to execute this code i got this error. TypeError: Result of e...