air

commercial certificate for Adobe AIR

I've been signing my Adobe AIR applications with a self-generated certificate, but now I'd like something that looks more official. What sort of commercial certificate should I get and from where? As always, thanks for the help! ...

Adobe air http auth

Hello ! I have a question about HTTP auth in a non browser env. If i have an Air app which takes user/pass to "login" to a web app. THe login action would be done with a request from Air to http://foo.bar/session/create and the uname/pass as POST var. Now i can keep the answer and add it to the headers for my next requests ? If the...

Retrieving data from a file system datagrid to a repeter: FLEX

Hi: I'm trying to retrieve data from a file system datagrid to a repeter, let's say something like this: <.mx:FileSystemDataGrid id="FSD" directory="{The_directory}"/> <.mx:Repeater id="Repet" dataProvider="{The data from FSD}"> <.mx:Object ...> <./mx:Repeater> So, the repeater must act like a... file system repeter? xD haha....

flex TLF right click

Hi, I am using TLF in my application. the textflow contains text & inlinegraphics. I am trying to implement spell checker on my own. So I want to add the suggested words for the miss-spelt word. For that I want to know the word I have right cliked on. After that fetching it from library & getting the suggested words part is done. So I ...

Flex Combobox Binding Issues

In my application i used combobox and adding value using dataprovider like id="teamComboBox" dataProvider="{xml_teamcoupon.lastResult.coupon.teamcoupon_name} my xml like this <pick15> <coupon> <teamcoupon_id>1</teamcoupon_id> <teamcoupon_name>teamcoupon1</teamcoupon_name> coupon></pick15> so comobobox shows team coupon name . Bu...

FlexBuilder not creating .swf file for AIR project

This seems like a bug in Flex Builder, however the builder no longer creates the .swf file for any projects (I'm building an AIR app). It did previously however, for some reason it errors out with the message "Initial content not found" (referring to looking for the swf in bin-debug, and not being able to find it). There are many propos...

How to databinding between custom component in AIR application ?

In my Main application I used label (like id=firstname) so we can use in main used firstname.text for databinding. But I have created canves custom component and load in main application using viewstack. In canves custom component how can I Bind label(id=firstname). I tried: var username:string = firstname.text but not show undefine f...

How to improve datagrid perfomace when using itemrenderer withing datagrid ?

For poor performance reasons, the DataGrid will cache checkboxes and reuse them for different rows. If you have 50 rows, it won't create 50 checkboxes. It will create as many checkboxes at are visible, plus a few more for padding, and then reuse them as you scroll. This is why you need to explicitly manage their state. How can improve i...

Adobe Air sockets and SSL

Hi all! I'm writing an Air application which uses sockets. I need to connect to nexus.passport.com:443 using SSL. Is this possible? If so, how? I use JavaScript for the programming. Thanks in advance. ...

Render webpage into an image using Adobe Flex

I want to render a webpage into a small thumbnail image in an Adobe Flex application. Does anyone know of a method to do this? ...

protect flv video file

I have a flv file,and want to play from only from AIR application. Now i need to protect my flv file in such a way that it cant be opened or played by any other existing flv player in the world.If some one doubleclicked that flv file then action will be zero or not played by existing flv player in the world and only played from my own...

encrypt the flv file

I am now thinking of encrypting the flv file . is there any way to do this by flex? do you have some tutorial of example to do encrypt the flv file. ...

How do select all checkbox within iteam renderer data grid using flex?

In my project i used one select all button for select all checkbox at click event . But i used datagrid ,iteam renderer within checkbox so no id of checkbox then how to select/unselect all checkbox ? <mx:DataGrid id=newdatagrid> <mx:columns> <mx:DataGridColumn headerText="1" rendererIsEditor="true" editorDataField="selected"> ...

Testing to see if a window is maximized

I noticed that in Windows, if you maximize a window you can not resize it until you un-maximized it again. This appears to be a normal behaviour, so I would like to remove my resize gripper when the window is maximised. At the moment I can't find a property to detect if a window is maximized, and although I could add a boolean in my con...

Adobe AIR application integrity

Is there any way to check the integrity of the application just before the application starts up? (to prevent anyone changing the application after it is installed) ...

Is there a way to flush the DNS cache or force a host name to re-resolve in Adobe AIR/Flash?

AIR seems to keep its own DNS cache when an application is running, and ignores any changes to the OS DNS cache (i.e. ipconfig /flushdns). More specifically, I'm creating multiple URLStream & URLRequest objects over a long period of time in a AIR application. Once the first one connects the host's IP address is cached for the lifetime...

flv video flex core

i have a flv video file i loaded the binary data of this flv file to memory by using var myFile:File = File.documentsDirectory.resolvePath("AIR Test/video.flv"); var myFileStream:FileStream = new FileStream(); myFileStream.open(myFile, FileMode.READ); var bytes:ByteArray = new ByteArray(); myFileStream.readBytes(bytes); myFileStream.c...

adt air flex core

I made an dance.air file but it has 3 directories inside the dance.air file. but when i installed this air file in macintosh then only one file was extracted or installed in macintosh desktop directory. But when i installed in windows xp then all directories are extracted in desktop. So, now question is, is there any possibility to m...

Flex: resizing the restore-window of a maximized window

I have a window, the window I programmatically change the size of the window depending on the current view it is displaying. The user cannot resize the window them self, but they can maximize the window. The problem is if the view is changed while it is maximized, the maximized window size changes, I do not want this, I want it to only ...

How can you set skining like upSkin,downSkin,overSkin to Accordion in flex ?

In my project i used Accordion . if i add skin to Accordion then so error ? but i tried like <mx:Accordion borderStyle="solid" width="212" height="346" upSkin="@Embed(source='image/UPDATE.png')" > But shows error like Cannot resolve attribute 'upSkin' for component type mx.containers.Accordion. how can i add overskin,downskin,upskin ...