flex

Datafield as itemrenderer in Datagrid using flex

I have datagrid having datefield as itemrenderer.If data is there in services comes like string,otherwise user will enter datefield data. If data is there ,I have to display it in screen and make cell as non-editable. If data is not there user will enter data,then I have to take that data and send to services as string.Iam not able to t...

Memory usage of the current Flex/Actionscript application

System.totalMemory shows the memory usage of the all instances of all flash/AIR applications in the system. Is there a way to find the memory usage of only the current application? Also even if I have only one instance of an application, and I close/relaunch it several times, System.totalMemory increases almost exponentially. ...

Run Command prompt commands through flex.

Can we run command prompt commands (like copy, rename etc) from an AIR or flex application? I thought of creating a bat file and running it using fscommand, but that does`nt serve my purpose. ...

Finding the width of TileList - scrollbar width Flex

I've got a TileList with verticalScrollPolicy="on". Is there a property that returns the width of the tileList minus the width of the scrollbar? ...

Waiting for flash player to connect to debugger...

Using Flex Builder 3 : I have been getting this problem in every single debug launch for past few hours. I used to get this earlier too, but once in a while, not with every debug launch. I found out that flex debugger uses a certain 7395 port but I can't figure out how to change it? ...

Accessing the itemRenderer of a selected item

Hi, I have a TileList with thumbnail images. Under each thumbnail images I display the name of the image. I want to build rename functionality. So under the TileList is a "Rename selected image" button. When this button is clicked, I would like to change the state of the itemRenderer component. The label underneath the image will cha...

Screentoaster, how do they do it?

I need to develop a browser based application that record the user screen, much preferably on flv. Also doing that with java would be perfect. That's exactly what they accomplished at screentoaster.com , with just a javaWS app. Would anyone have an idea about how they've done it? Did they use Xuggler? Best Regards, ...

Add Context menu in Datagrid

How we add context menu in datagrid column header. Thanks ...

Flash google map like http://online.wsj.com

I want to show flash google map as given on below link http://online.wsj.com/public/resources/documents/info-FDICBANKS111609_RETRO.html Can anyone please help me from where can I start? Is there any ready map available like that? ...

How to find the list item currently under the mouse pointer in Flex?

I have some List and TileList controls. How can I get a reference to the list item that's currently under the mouse pointer? ...

BlazeDS 3.2.0 and JBoss 5.1 DatabaseServerLoginModule

Has anyone that is using BlazeDS RemoteObject been able to retrieve the authenticated user roles through JBoss DatabaseLoginModule login policy? I'm using using BlazeDS 3.2.0 and JBoss 5.1. I can successfully authenticate but I, users with unauthorized roles are still able to login. I've changed the Realm in default/jbossweb.sar/server....

Passing optional arguments (...rest) through to another method that takes optional arguments in AS3

Hi! I have a "format" method that works in a similar manner to the C# String.Format method, with the following signature: In a class named StringTools: /** * Formats a string, based on C# String.Format method. * @param raw A string with numbered tokens, such as "{0}, {1}" * @param rest Values that replace the numbered tokens in raw....

Is it possible to catch a comboBoxes value before change with a change event

I am displaying a combo box in something of a WYSIWYG preview. I want the user to be able to click on the combo box and see the options inside, but I don't want them to be able to change the value. I tried using preventDefault() on the change event but it doesn't work. I don't want to disable it because I do want the user to be able to "...

Uploading multiple files simultaneously with Flex

I have been working on a flex uploader, where the user can select multiple files. It works fine when the files are uploaded in a queue (one at a time), however as soon as I try to have it upload 2 files at once I run into issues. It seems that files will often lock up, and either stay at 1% until every other file is uploaded, or just n...

How to create a Flex Display component in Flash?

I have used Flash to make skins, which I import and apply to Flex components. But how can I create a component in Flash, with properties and methods. And make it able to be added to the displayList in a Flex app? I installed the Flex component kit for flash. Created my component in flash (it extends MovieClip). Did Command->Convert to ...

Apache Pivot 1.4 vs. JavaFX, Flex, Silverlight, Swing

I've recently heard about Apache Pivot being moved to the Top Level Projects category and I was wondering who has tried the most recent version and compared it to other RIA tools. What are the proper categories for comparison? It seems to be easier to pick up for Java developers since JavaFX has a different scripting language. The Pi...

Initializing a collection from MXML

Gentlepersons, How does one initialize a collection instance from MXML in Flex/Actionscript? Background Let's assume that: I've got three lists of number-name pairs. The contents of each list never changes, but I may want to add new lists in future. The user can choose which list to use. I know how to use MXML to define/initial...

What Property Governs The Text Color Of Checkbox Text OnMouseOver In Flex?

Because the color of the background image in my application is very dark, and the Alpha is very low, when I hover my mouse over a checkbox, the text is scarcely visible. I've scoured the interwebz in vain for what property to set, either at design-time or in the MouseOver event for the checkbox and just can't figure out what property or...

How can you use a .NET service object within Adobe Flex

How can I use a .NET service object in an Adobe Flex application? Is it even possible? Do I have to use some third-party tool? ...

Flex PureMVC: Mediator not registering

A component is created at runtime and a mediator is created and registered. All is well. In a separate view, another instance of that component is created. The mediator is created but onRegister() isn't called the 2nd time. I don't know if this is normal... but if it is, how do I get it to call onRegister() the second time? Thanks. ...