air

Flex/AIR + GraniteDS through SSL

I am running JBoss with SSL, the certificate is generated with openssl: <Connector protocol="HTTP/1.1" SSLEnabled="true" port="8443" address="${jboss.bind.address}" scheme="https" secure="true" clientAuth="false" keystoreFile="${jboss.server.home.dir}/conf/chap8.keystore" keystorePass="password" sslPr...

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? ...

What's the advantage of an Adobe AIR app over a traditional desktop app?

I'm pretty familiar with using Adobe Flex & AS3, and compared with writing apps in JS/HTML I think it's very cool. However, since AIR is essentially a non-browser version of Flex with benefits like local storage, it seems to be competing as a cross-platform desktop application platform... and in that space it's much less mature than more...

Adobe Export Release Build doesn't work - Mac OSX - Flex Builder 3

Hello, I have an AIR application i'm trying to release with flexbuilder. Launching application has no problem ... bin-debug dir is correctly filled with my files. But when i want to create the AIR file (export release fuild), AIR files content view is empty and bin-debug directory is never filled ... Any idea ? Thanks, Yannick Gren...

How to specify an AIR <fileType> configuration which matches files with _no_ extension?

I would like to specify that my AIR app can open text files that may not have a file extension as part of the name. I would like to create a specification for my Foo-app.xml file to enable this. For files of type ".log", the looks like: <fileType> <name>com.apple.TextEdit</name> <extension>log</extension> <contentType>text/plain<...

Send info from web browser to adobe air app

I'm creating an app and I need to know how to send just a few words or a number from the web browser to the adobe air app. Something similar to iTunes where you click on an iTunes link and redirects you to the app. I am willing to use any web scripting language for it. Thank You :) ...

How to sart Adobe Air App with arguments?

How to sart Adobe Air App with arguments, is it possible, at least with native apps? ...

How can you start a process from asp.net without interfering with the website?

Hi, We have an asp.net application that is able to create .air files. To do this we use the following code: System.Diagnostics.Process process = new System.Diagnostics.Process(); //process.StartInfo.FileName = strBatchFile; if (File.Exists(@"C:\Program Files\Java\jre6\bin\java.exe")) { process.StartInfo.FileName = @"C:\Program Fi...

How to insert data into MySQL using Adobe AIR?

How to insert data into MySQL using Adobe AIR? ...

How Adobe AIR program can to index all images on a user's computer?

What is the fastest way for a Adobe AIR program program to index all images on a users' computer? Using Open Source ActionScript-3, MXML Libs and classes. Fastest - Same pc configuration, different time (seconds) To index - get a list of absolute links (like c://bla-bla/file ) and save them into file (index.txt) All images (like JPEG...

Flash video slooow in AIR 2 HTMLLoader component

I am working on a full screen kiosk application in Flex 4/Air 2 using Flash Builder 4. We have a company training website which staff can access via the kiosk, and the main content is interactive flash training videos. Our target machines are by no means 'beefy', they are Atom n270s @ 1.6Ghz with 1Gb RAM. As it stands the videos are a...

How to install .air files with air2beta

I have some troubles installing air files that've been built with air2.0beta or air2.0beta2 They both do not install (error message: 'your need an update to install this air application) even though I've got the latests Air2 runtime installed. Any suggestions on this? ...

Adobe air air.navigateToURL bug with internet explorer

Hello I have a really bizarre problem with my adobe air app. I have a method which launches a local HTML file and passes some querystring items to it. Here is the code: function printWin(def) { def = encodeURI(def); var req = new window.runtime.flash.net.URLRequest('print.html'); req.method = 'GET'; var urlvar...

convert remote object result to array collection in flex...........

HI guys, im using zend_amf and flex. My problem is i have to populate my advance datagrid using array collection. this array collection have a children. example: [Bindable] private var dpHierarchy:ArrayCollection = new ArrayCollection([ {trucks:"Truck", children: [ {trucks:"AMC841", total_trip:1, start_time:'3:46:40 AM...

Accessing Webcam Native Controls (Zoom, Brightness etc) via the Command Line

Hello everyone. Does anyone know how to access webcam native controls such as the zoom, brightness level from the command line interface? How does programs like messenger and skype list those options and are able to control those settings? I am trying to do this to an AIR 2 app and know that we can access NativeProcesses etc now. Any...

ActionScript variable inside HTML

How to access ActionScript-variable inside the HTML control(HTML area) in Adobe AIR? ...

Recognizing Actionscript variable inside HTML

I have an actionscript variable and an HTML control (HTML area) in my AIR application. I want to access this AS variable inside this HTML area via javascript or something. Can anyone please help? ...

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? ...

Advantages/Disadvantages of AIR vs Flex/Web

Hi all, I'm tasked with writing an application for placing and connecting objects (sort of like a room planner where you can place furniture). I've made a demo using Flash Builder 4 and built it for AIR as a desktop app. Now the client wants the full app, but they and I am unsure whether to continue building it as an AIR app or transfor...

Type 1046: Type was not found or was not a compile-time constant: NetworkInfo.

Hello, Just started playing with the new AIR functions NetworkInfo and NetworkInterface, but can't build ... This is the example I started from: tourdeflex But these lines cause errors: var networkInfo:NetworkInfo = NetworkInfo.networkInfo; var networkInterfaces:Vector.<NetworkInterface> = networkInfo.findInterfaces(); Any ideas on...