air

How can I detect and invoke a user's local installation of the AIR runtime on a particular AIR application?

I am writing a program that has an AIR front-end, but a back-end written in another language (Python, in this case). Since AIR can't invoke other executables, the relationship has to be the other way around, with Python running an AIR subprocess. How can I locate the user's AIR runtime? I'd like to be able to do this on Mac, Windows, ...

What are the print functions in Adobe AIR ?

I've been trying to figure out how to print in Adobe AIR. I know the standard javascript functions don't work. The AIRforJSDev guide says: "The window.print() method is not supported within Adobe AIR 1.0. There are other methods available via the exposed AIRAPIs that give you access to printing within the runtime" But I can't find thos...

How do I make a custom Flex component for a gap-fill exercise?

The purpose of this component is to test knowledge of a student on a given subject - in the example below it would be geography. The student is given a piece of text with missing words in it. He/she has to fill in (type in this case) the missing words - hence this kind of test/exercise is called gap-fill.There could be several sentences ...

Tips, Guides and/or Tutorials on writing a Windows desktop app for a PHP programmer by trade

Yup, long title. I've been programming in PHP for the last 6 years or so for work and personal projects, but I've got an idea for a desktop app (which incidentally, uses a web REST api). I'm debating on how to approach this - I've got some experience in Java, C++, Perl and Python, but have never had the chance or opportunity to write a...

How can I build an Adobe Air project with Maven?

Has anyone successfully built an Adobe Air application with Maven? If so, what are the steps to get it working? I have been trying to use flex-mojos to build an Air applications. When I set the packaging type to "aswf", as suggested in the DashboardSamplePom, Maven complains that aswf is an unknown packaging type. I also found their ...

How do I launch a standalone SWF from within an Adobe AIR application?

I'm completely new to AIR but what I'm trying to do feels like it should be quite easy. I want my AIR app to execute (launch) an SWF in the standalone Flash Player (just like if I were to double click it). Please note that I don't want the AIR app to embed the SWF. Just run it. Can this be done? ...

Adobe Air and .NET

Hi, I Adobe Air completly JavaScript? Can't I use a .NET language like VB.NET or C#.NET? Thanks ...

AIR Caching framework/library

Anyone know of a good memory/disk caching library for AIR? Extra points for being compatible with Flash CS3, and being free (as in beer). I'd like to cache results of http requests: both binary and text (xml). ...

Embedding binary video data in a swf file

Is it possible to play video from data that has been embedded in a swf at compile time (with the [Embed] metatag)? The "Import Video->Embed" feature provided by Flash CS3 etc. is not acceptable because it has many severe limitations (including sound synchronization issues, a maximum number of frames, and other caveats) I'm interested i...

Can an Adobe AIR Application run via the command line output to console?

I have an AIR application that takes command-line arguments via onInvoke. All is good, but I cannot figure out how to print some status messages back to the user (to stdout / console, so to speak). Is it possible? Even a default log file for traces would be fine, but I can't find any info about it anywhere. Do I need to create my own lo...

Flex/AIR: automatically absorb unassigned/disabled key shortcuts

I have an AIR app with an <mx:HTML> component, which renders a page that includes an HTML/Javascript-based WYSIWYG/rich-text editor. Various keyboard shortcuts are assigned for formatting and what have you, but if I type a shortcut which isn't assigned (eg. cmd [or ctrl on Win] + M), the character is entered as if no modifier key was pre...

OS X keybindings in AIR app

When used in an AIR app, some standard keystrokes in OS X are either ignored or produce "mystery" characters rather than behaving as expected. Examples: option + left arrow should move the caret one word backward, it prints a mystery character ctrl + h should delete one character backward, it prints h How do I support OS X default ke...

Ext Js and Adobe Air

Can anyone reccomend some good tutorials for ext js and adobe air? The ones I have seen seem to start with you knowing a lot or already having a lot of code in place. What I am looking for is a simple step by step guide that takes you through the basics of Ext Js in use with adobe air, in fact i suppose just a good Ext Js tutorial for b...

Can OpenLaszlo apps access AIR APIs?

It seems OpenLaszlo can run on AIR. What's less obvious is whether OpenLaszlo apps can use the AIR-specific APIs, like file system access. If so, how exactly is this done? ...

Use commandline arguments in creationComplete

How can I use command line arguments in a creationComplete event handler? It seems the invoke event happens in my AIR app after creationComplete gets called, so I can't use the args in that function, although I really would like to. Any other event that might always fire after the invoke event happens? ...

"Bootstrapping" a remote swf into the application SecurityDomain (actionscript3)

My Flash (AS3/AIR) application is currently using a slightly unusual architecture (for a Flash app) to provide particular base classes for loaded content at runtime. The external content is published with 'stub' base classes, which are eclipsed by the 'real' base classes at runtime when it is loaded. I've heard this referred to by Adobe ...

Flash Logging API

Can anyone recommend a good (AS3) logging API for Flash/AIR/Flex? I need something to capture and record mouse and keyboard events in addition to coded events. Preferably something well documented/supported. Thanks in advance. ...

Will Air 1.5 include an update of WebKit with CSS animations?

I'm currently developing an html/ajax air app and am about to invest some effort into making animations using jQuery. I could do this quite a bit easier using the css animations if air had that recent a version of WebKit. I know some people have alpha/beta versions of air 1.5. If you do, can you let me know? ...

Can Adobe AIR applications execute processes on the local client machine?

I want to be able to launch a third party process from within an Adobe AIR application (actually a command line process). Is there a security context that AIR apps run in that prevents this? ...

Consuming REST API with Adobe Air

Can Someone show me a good example of one Adobe Air App (using Javascript) consuming a REST API? ...