air

How can I create a reflection effect with bitmap images in Flex?

I'm looking for a simple, clean and memory-efficient way to create and apply a reflection effect (you know the one, popularized by the famed iPhone UI) to the bitmap images I've loaded into a Flex app at runtime. The source images will be of varying types (JPGs, PNGs, etc.), but an acceptable solution can assume each image is already lo...

Is anyone selling AIR applications?

I am working on an AIR application that I hope to offer to small businesses in the next year or two. I think Flex/AIR are great technologies, being cross-platform is very important to me, etc. Besides enterprise apps, is anyone developing applications in AIR that 'regular people' are buying? If so, which ones? If not, why not? ...

What is Adobe Air?

What exactly is Adobe Air? I've seen a lot of people talking about it and I've even seen applications for it but I'm still not entirely sure what makes it unique or how it is different from other languages. Can someone please give me the concise version from a programmer's point of view? Edit: I wasn't familiar with Flex so I found this...

Is there a way for an AIR 1.5 app to read from stdin and write stdout/stderr?

Have been studying the file system related classes of Adobe AIR 1.5, but so far I've not seen anything that mentions how to interact with stdin/stdout/stderr. Is a bit surprising as AIR makes it possible to otherwise interact with the local file system, and there is a FileStream class. Am wanting to launch an AIR app from a parent proce...

HTTP Basic Authentication with HTTPService Objects in Adobe Flex/AIR

I'm trying to request a HTTP resource that requires basic authorization headers from within an Adobe AIR application. I've tried manually adding the headers to the request, as well as using the setRemoteCredentials() method to set them, to no avail. Here's the code: <mx:Script> <![CDATA[ import mx.rpc.events.ResultEvent; ...

Trying to attach a database to a currently open database but i'm getting an error saying ATTACH is not allowed from SQL

Hi, I'm trying to attach a database(db2.sqlite) to a currently open database(db1.sqlite) and copy the contents of one of the tables in db2 into one of the tables in db1. The logical way to do this I thought was to use the attach command and then select all from db2 and insert into db1:- attach 'C:\db2.sqlite' as newData; insert into ma...

What is wrong with this SQLite query?

I'm creating an AIR application which connects to a SQLite database. The database balks at this insert statement, and I simply cannot figure out why. There is no error, it simply does not move on. INSERT INTO Attendee (AttendeeId,ShowCode,LastName,FirstName,Company,Address,Address2,City,State,ZipCode,Country,Phone,Fax,Email,BuyNum,Prim...

Can Adobe AIR applications achieve SSO authentication against Active Directory?

I don't know much about AIR apps, but I like what I'm seeing so far. So now, I'm wondering if this type of app would make sense in the intranet at work. Before I invest time and effort into ramping up on AIR development, I would like to know: is it possible for an AIR app on Windows to do single sign-on authentication against Active...

How can I load the AIR runtime as a in-process shared library from a C program

I'd like to build a special AIR launcher program in C along the lines of java.exe. I've looked at running AIR programs with a process viewer and was able to locate the AIR runtime DLL that is being used. AIR programs are different than Java in that they are installed as platform-specific executables that bind the AIR runtime as an in-pr...

How can I drag an eMail from Outlook into an Adobe AIR application

This is a quiestion concerning both, Adobe AIR and MS Outlook. I'd like to drag an eMail from Outlook into an AIR application. I want the following data to be transferred into the AIR application: unique ID of the mail in Outlook to create a link into Outlook rich text of the mail some information about the mail like sender, recepient...

Can the Flex Builder Profiler be used with an AIR application?

I am trying to profile my AIR app in Flex Builder. The app is starting but not the profiler. Is it actually possible to profile AIR apps in FlexBuilder? ...

Difference between Adobe AIR and FLEX?

What is the difference between Adobe AIR and FLEX? ...

How to open real popup window in Flex

I need to open popup window in my flex / air application that will be displayed like normal application window. All I could manage is to open a window which is displayed inside my main flex window. Is it something like that possible, and is there some workarounds if not? ...

How can I play a youtube video in swfloader?

hi, I embed a youtube video in my air application. It loaded and played well, but I cannot play more than one video at the time, only one video is played at the time, do you know why? The code is: url:String = "http://in.youtube.com/v/fVGk5qm6Mac&amp;hl=en&amp;fs=1"; //texturl.text=url; swfloader.load(url) please anyone ...

How do I restrict my AIR distribution?

Is there any way through which i can restrict my AIR app to be further distribution? Say I have make one AIR application and I give this app to my friend. Is there any way so that he can not re distribute this app to any new person? ...

Show url on link hover in AIR HTML control

Does anyone know if there is a simple way of catching the hovered link url in an AIR HTML control? Just like in a browser, I would like the url to be displayed in a status bar but I can't find any event that is raised on rollover of a link. Do you I need to inspect and perhaps manipulate the DOM myself for that? ...

Cannot get file data from the clipboard using Flex

Given: A Flex TileList with the following event: <mx:nativeDragDrop> <![CDATA[ if(event.clipboard.hasFormat(ClipboardFormats.FILE_LIST_FORMAT)) { var files:Array = event.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT) as Array; for each(var file:File in files) { // file.data is null here! } ...

Database schema updates

I'm working on an AIR application that uses a local SQLite database and was wondering how I could manage database schema updates when I distribute new versions of the application. Also considering updates that skip some versions. E.g. instead of going from 1.0 to 1.1, going from 1.0 to 1.5. What technique would you recommend? ...

Duplicate MovieClip in AIR/AS3

Has anyone noticed how creating new instances of a MovieClip (and likely other objects as well) in AIR causes some strange effects? If you use Senocular's method by grabbing the object constructor and creating a new instance of the MovieClip, you end up with a new MovieClip with 0 frames. I don't want to draw bitmapData's of every frame ...

Is it possible to use imagemagick as library reference from Adobe AIR?

I'm trying to load preview thumbnails of high resolution images and the application needs to be able to load 100 hi rez images at one time. The only way i know how to do this is if I use the Loader class and I have to load the ENTIRE file and then scale down the image and use the data as an image preview. what i'd like to do is use imag...