textflow right click cursor blink
Hi, I am using textflow in my application. I need to add a functionality of getting focus(cursor blinking) on right click. How can I do this? Thanks in advance. ...
Hi, I am using textflow in my application. I need to add a functionality of getting focus(cursor blinking) on right click. How can I do this? Thanks in advance. ...
Hello, I'm trying to load an swf file using SWFLoader in Adobe AIR app. The problem is that after the swf loads, Adobe AIR shows me the following error. I know that this swf tries to download an RSS file from the web. SecurityError: Error #2028: Local-with-filesystem SWF file file:///xfile.swf cannot access Internet How can i fix ...
Hi I have an Air app that downloads a data set of around 100`000 objects and puts the objects in an ArrayCollection. I would like to apply various filters to the data set in numerous screens throughout the app. I am a little worried about possible performance issues if I make multiple copies of the collection. However, if I don't copy t...
I need to be able to communicate between two applications that reside on the same machine. One is using Flex and the other is in C++. I would like to be able to call functions and pass arguments to each other. What is the best way to communicate between them? I was thinking about using sockets. ...
I was curious if it's posible to integrate a fingerprint scanner to a Flash/Flex/AIR application, I can't seem to find anything on the web. ...
Is it possible to have multiple windows-"handles" open in one Adobe AIR application? You can ofcourse make a walkaround by letting the app be transparent, but I am interested in a better solution. ...
Hi, i need to read css and access individual styles and its properties,and i need to update the css file . at present i can laod css by URLLoader and get all styles using the StyleSheet.styleNames; but its get only stylename but i need to get all the properties , so that i can update the style and save as css file, If you have an...
hi, i can able to create StyleSheet object , i need to save that StyleSheet object to css file(in the css format). how can i do in flex3 Air application , is there any build in library ? Or links available to save as *.css file Thanks in advance ...
When connecting from a local AIR/Flex application to a local application (c++) using sockets do you still need a socket policy file? If you do, is there an easy way to load the policy file without sending the policy from the local application you are trying to connect to? side note: I am writing both applications. ...
I would like to open and close a window in Flex(AIR). I would really like to do something like: var myWindow:Window = new Window(); myWindow.open(true); // open after creating(this works) myWindow.close(); // now hide the window myWindow.open(true);// reappear(this doesn't work after a close) I'm probably missing something simple, ...
Hi, I have 2 swf file, one file is loading fine in SWFLoader in Air application but another is not loading, i dont know why its happening. differents between two file :- For ex: Swf1 is Main swf .(it has dependency file like xml to read and render) swf2 is Sub swf(which will load (or called) inside swf1 in run time) . When try to...
I have button like random click ,if i click this button then will select 15 checkbox within datagrid itemrenderer checkbox But i can't access the checkbox ? please refer me ? How can access the checkbox ? <mx:DataGridColumn headerText="1" rendererIsEditor="true" editorDataField="selected"> <mx:itemRenderer> <mx:Component> <mx...
Hi, I have one swf file in that i used fscommand to get final output when submit button clicked in that swf , i am loading that swf in SWFloader in flex3 .i need to get fscommand value as Alert, how to get that value first and display as alert. Thanks in advance ...
I am using the local database feature in AIR 1.5. I have a table which is created by: "CREATE TABLE IF NOT EXISTS employees (timeAdded Date, name STRING)" Now lets say that I want every employee added between date1:Date and date2:Date, I would do that by using: "SELECT * FROM employees WHERE " + date1 + "<timeAdded AND timeAdded<" + ...
I have an interactive flex app which loads data from our oracle database and displays it in charts. This needed to be automated to generate some of these charts and a minute by minute or hour by hour basis in the background and the images saved for viewing in non-flash pages. I converted the flex app to and AIR app and set it to run but ...
Hello /dev/all, I just read a good tutorial at http://cateof.wordpress.com/2009/09/27/helloworld-air-application-in-linux/ about creating simple apps with air/flex. I was wondering if you have spotted similar pages around and if there is a good book that I can read in order to move from beginner to novice at this field. Thanks in advan...
Hi I am trying to manipulate (move up and down, enable/disable and launch a form) child controls inside a panel control. However I am unable to get the id of the child control on which the click event occurs. To illustrate, I am trying to create similar functionality as is available. I am trying to create the up-down buttons that you ...
I have developed to applications in flex. The one application constantly retrieves data from the internet, while the other can be opened and closed when you want, both apps use the same database. The problem is that at random I get an Error #3119: Database file is currently locked. Is it not possible to have two stable connections in a A...
In an AIR application, I have a private variable and a setter: private var _saveResult public function set saveResult( result:String ):void { _saveResult = result; dispatchEvent( new resultUpdatedEvent( _saveResult )); } The first time that I set "saveResult" the event fires. But it will never fire again unless I restart the applica...
Hi, i am working in Air application in Flex3 , i need know how to set "selectedItem" Property when we have 2 values like(data and label) label property to combobox selection, data value for our input. Like shown below. In (selectedItem="{stylename}") stylename will have "data" value but i need ...