air

Receive news feed from facebook

Hi all! I need to receive news feed form my facebook page to my AIR application (without prompt login and password). I've been looking for solution but can found it. Maybe someone can help me? ...

How can one bake custom data into an Adobe AIR distribution?

I would like to have an AIR application available for web download, but have some data customized per-user-download. Think CD-key, or in this case an encryption key and user name, so that the downloaded version can connect to a website and know who it is that downloaded it. As a fail-back if this is not possible, I could require the user...

highlight item in spark list

I have two spark lists and want to drag items from one list to the other. When im dragging an item and over the other list item, i want the target item to change the background coloer. Basically instead of showing the black line indicating that I will drop between elements, I want to see the target item highlight. Thanks in advance. ...

Command line FTP clients for AIR 2.0

Hi Can somebody suggest a good command line FTP client which can be easily integrated with AIR. I am trying to overcome the limitation of uploading/downloading a maximum of 100 MB to an FTP server from AIR app. Any alternatives or supporting documentations are welcomed. ...

Flex background not changed after changing theme

So I am pretty new to flex. I am developing an AIR application and I want to change my project theme to one of the additional included themes that is packaged with Flash Builder 4. So, I went to the Project Theme and changed it and it looks like it is supposed to in the Design View. When I run the application, the components (eg: a butto...

How to dynamically load image for drag and drop?

I am implementing drag and drop from a DataGrid onto a List in a Flex 3 AIR application. I would like to have the drag image be a photo (jpg) referenced by a String field in the data grid item, named 'imagePath'. I'm having trouble getting the image to show up during dragging. I have triple checked that it is not because of an invalid pa...

How to display file system in an air application?

Hi All, I'm working on a file sharing application. I want to display one side client file system and other side server(or peer's) file system so that by drag and dropping they can transfer files one system to other. Now I want to display my local file system as it opens main window without any browse or search buttons. Its a window appli...

In which langauge Boxee.tv IPTV software developed in?

I want to know the programming language used by Boxee.tv guys to build their IPTV software. My company is building a IPTV software which will fetch channels and stream channels from the internet. Boxee's desktop client does the same. Since we want to create a Similar UI, I would like to know what have they used to create such a UI. Is ...

How to correctly Deserialize obects while catching errors

I have a class DataFile which is the top level class that I am serializing. DataFile contains an ArrayCollection which in-turn contains objects which extend ArrayData, each which overrides readExternal in different ways. Over the course of the development the ArrayData object from version 1.0 is now different than the ArrayData object i...

Flex command line tools into GUI

Hi there - desperately need your help... Specification: ["Our plan is for you to write an application, built with AIR, to drive some command-line tools supplied with the Flex SDK (http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK). These would make use of AIR 2's NativeProcess API (http://www.adobe.com/devnet/air/flex/quickstart...

Return Array in ActionScript 3.0 (Flash and Air)

Hey guys, I'm trying to get the name of every files from a specific folder into an array, but I get this error and I can't find why... this may be a stupid question but whatever. TypeError: Error #1009: Cannot access a property or method of a null object reference. Here's my code: import flash.filesystem.File; function getFileLis...

AIR 2.0 NativeProcess is not supported problem.

Hi, I'm Fran. I have built a application that use a nativeProcess to open exe. The application into Flex Builder 3 run whitout errors. Then the problem come when I export the aplicaction AIR in .air and install the applicaction in the developer pc or other pc. When I push the button to open the .exe, appear the message "Native Proces...

icon in mx:PopupButton

I've an <mx:PopupButton/>. I want to change its icon dynamically by reading this from disk. I am using an AIR application so I've disk access. Possible? Basically I've a string i.e. file system path with me. icon field in mx:PopupButton requires a class reference. ...

Can I play a video backwards in AIR

Hi I need to play a .mov file backwards in my Flex app. Some help?? ...

Does such a video player exists for Flex

Hi Is there a video player for Flex which allows me to play videos at slower or faster rates and reverse play it? ...

Communication protocol

Hi all, I'm working on a AIR 2.0 project which uses ServerSocket and Socket classes to communicate between applications. For now, messages are only "ping?" => "pong!", but I'd like to dispatch more complexes messages... Is there a "standard" protocol for that? Thanks ! Romain ...

how can i access adobe AIR’s embedded SQLite database? I need to backup/export snippely (an air application)

I have a air application called snippley All i want is to get to the data (my snippets) and export them. ...

problem with undocument feature adobe air 2 (FLEX)

Hi I'm writing a piece of code that take an object in an HTML page using web kit (air) well the odd thing is when I get element by name air return me __HTMLScriptObject ?? and inside there's 2 "structure" of data that I can't understand what really are... Can anyone explain where I can find __HTMLScriptObject doc and how 'extract' the ...

Get IP Address with Adobe Air 2

I'm building an app in Adobe Air 2 with AS3 and need to get the users ip address. From what I understand this code should work but is tracing: "::1" not an ip. Thank you. var netInterfaces = NetworkInfo.networkInfo.findInterfaces(); var addresses = netInterfaces[0].addresses; var userIp = addresses[0].address; trace(userIp); ...

Tell when someone has gone offline in Adobe Air 2

I need to know when someone has lost their internet connection immediately after doing so. I'm coding my app in as3 and Adobe Air 2. Thank you :) ...