tags:

views:

94

answers:

2

Hi All,

I need to write a desktop application that can run on Mac (Windows and Linux soon) that can get data from MySQL and allow users to transfer files from their desktop to the server.

I know I can write a desktop app in AIR, how would Fireworks play into this?

Can AIR connect to MySQL?

Can one FTP files with AIR?

On a second note, can one write such applications as a ring-tone maker, a disk repair/partitioning utility in AIR? I know AIR uses web technology, but what other thigns are possible?

-Jason

+1  A: 

Do you mean Adobe Fireworks? I would use Fireworks for the interface design. It also has some customizable assets.

Here is the product page where they have a lot more info on what it's capable of.

http://www.adobe.com/products/fireworks/features/?view=topnew

acreek
+1  A: 

An AIR application is a desktop version of a Flash Application. So anything you can do in a Flash Application you can do in an AIR application. Flash Apps work with MySQL so you should be able to get an AIR app to work with MySQL.

AIR apps can also access the local file system. For instance you can write an AIR file loader application.

Leah
AIR is not limited to just flash apps. You can also build apps with HTML/JavaScript and run them.
John Sheehan
Flash apps can't connect directly to a MySQL database, so far as I know. The usual way of doing it would be to build a web service to provide access to the database, and have the Flash app go through that. Not sure if AIR has the same limitations.
Moss Collum
Leah,Do you have any examples or ideas on how one would develop what I need?
Google for "Flash and MySQL". Projects I have worked on have used Flash with Web Services or WebOrb (http://www.themidnightcoders.com/) to pass around data.
Leah