flex

how to store multiple objects in flex sharedlocalobject?

I have a project where the client can save data from a flex app to their client in xml , something like <xml> <project id='1111'> <data ... /> <data ... /> </project> </xml> this is stored on the flex sharedlocalobject , but if the client creates a new project it overwrites the existing project. How can i store multiple projects in the...

Browser scrollbars for a flash website

I've made a page entirely in flash (flex actionscript project), and for weird reasons, should'nt scale when opened with a small windowed browser (low resolution or not maximized); in this case I need to have to browser scrollbar active to show the full flash application. How can that be done? Note: I don't want to implement a scroll me...

Frameset in flex application ?

There is a frameset concept in HTML ....that we all know.... But i need that to be done in flex application .... How to do that ? ...

Access flashvars in preloader in flex?

I want to access some flashvars in my preloader to a Flex application. How is this possible? Regards Adlertz ...

Replacing ScrollPane Scrollbar with OS Native Scrollbar

Is there an easy way to replace the ScrollPane scrollbar with the OS's native scrollbar? Flash applications look much more integrated if they have the same skinning as the user's operating system -- which isn't always easy to detect (Vista Aero vs. Classic?). Have you guys come across any examples of Flash apps doing this? ...

Flex Issue with crossdomain.xml and FileReference.upload

Greetings I have a Flex application that does a variety of request to a web application located in a different domain. Thus I've made a custom crossdomain.xml to allow access from my Flex app. The content of this file is > <!DOCTYPE cross-domain-policy SYSTEM > "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"&gt; > <cross-domai...

Do you know free Download slideshow animation URL Using flash ?

Duplicate of http://stackoverflow.com/questions/680539/do-you-have-flash-or-flex-or-jquery-header-animation-like-this-url-site-http-w Do you know free Download slideshow animation URL Using flash ? ...

do you have Flash or flex or jquery header animation like this url site http://www.zhoyosoft.com?

Please very urgent ------- do you have Flash or flex or jquery header animation like this url site http://www.zhoyosoft.com? is it possiable can do in jquery and also flex ? anybody help me ...

Extract zip file in flex

Is there any method to extract zip files and maintain the same folder structure in the output folder.I am able to extract the zip file and its inner files but not able to extract folder from a zip file and thus fail to maintain folder structure also. ...

How to redirect the web page in flex application ?

I have a button control ....i need another web page to be redirected while clicking that button .... how to do that ? Thanks ...

Listen to events from preloader in flex

I have a preloader in my flex application: public class Preloader extends DownloadProgressBar { private var _preloader:PreloaderAnimation; public function Preloader() { super(); _preloader = new PreloaderAnimation; addChild(_preloader); } public override function set preloader(preloader:S...

Flex 3 passing objects from Flex to java class

Hi, I want to pass an object from my Flex application back to my Java app. Im looking at either passing to a Serlet or passing via a DAO as an object. Any recommendations? ...

Calling a getter without assigning it to anything (lazy loading)

I have a DTO which can be fully loaded or lazy loaded using Lazy Load Pattern. How it is loaded depends on what the Flex Application needs. However, this DTO will be sent to a Flex application (swf). Normally, a collection for instance, will only be loaded when called. In my case however, the collection will only be called in Flex, so my...

How to animate the flex chart axis when the maximum of the data changes?

I have a flex chart feed with multiple data sets, and I want to display only one of the data set in one view. So I created multiple buttons to select different data sets. Whenever the user clicks one of the buttons, I adjust the maximum of the vertical axis so that the chart can represent the data normally (i.e. not to display the fluctu...

Best way to branch Flex projects using subversion

Here's our problem, we are a Flex shop that uses .NET for the server side logic. We use subversion for our source control and subeclipse in Flex Builder but are still quite new to using source control let alone subversion. Branching and merging seems to work very well on the .NET side but we are running into issues on the Flex side bec...

Best way to set the selection of a flex control that hasn't initialized yet

To illustrate the Q. I'll really over-simplify the example (in reality the code is much more convoluted). Say you have a flex control, which underneath contains a datagrid. Something like <mx:DataGrid id="grid" dataProvider="{document.items}"> <mx:columns> <mx:DataGridColumn headerText="Column 1" dataField="@name"/> <mx:D...

How can I load something from MySQL to an HorizontalList in Flex

How can I load text from MySQL to an HorizontalList in Flex3 ? I am using : <mx:ControlBar x="10" y="40" width="460" height="230"> <mx:HorizontalList id="dataGrid" dataProvider="{dataArr}" labelField="lbl" iconField="src" itemRenderer="CustomIte...

Is there any use for Flex + Python/Ruby without a web framework (Django/Rails)?

I often hear about Flex being combined with web frameworks on the backend. The idea being that Flex serves as the presentation framework while the web framework (Django/Rails) does the database lookups and sends the data to Flex to present in the form of XML. However, is there ever a situation where Flex and Python/Ruby would be combine...

Flex 3 sorting object fields

i have an object in actionScript3 code which i need to sort, i iterate through the object and print out each value for (var i:String in columnData) { however i need the data im iterating to be sorted aplhabetically. any suggestions on how to do this? ...

firefox won't convert string to number in flex

I making a web app in Flex using global coordinates I get the coordinates as strings from a web service then I do something like this: latStr:String = "28.7242100786401"; longStr:String = "-106.12635420984"; var cLat:Number = new Number(latStr); var cLong:Number = new Number(longStr); This works PERFECT on IE and chrome, from the we...