flex

Generate UML from Flex Projects

Are there any good tools to generate UML class diagrams using the source code from a Flex Builder project? I have been trying IntelliJ but for some reason it generates the inherited class structure from the SDK and not everything below my main app. ...

Flex and ASP.NET MVC tutorials needed

I am urgently looking for tutorials about integrating flex and asp.net mvc in an application via json. What I basically need is sending and getting data to/from the asp.net app and visualizing it using flex ...

How to display only one letter in Flex Text Layout Framework ContainerController?

I'm trying to implement dropped initials feature into my Flex application. Since Text Layout Framework does not support floating, the only known solution is to create additional containers that will be linked together, displaying the same textflow. Width and positioning of these containers has to be set in such a way that it will pretend...

Flash builder 4 tracing problem in debug mode.

Hey everybody I am trying to use trace() in flash builder 4 - but it doesn't work! I am running in "debug", also I added to the flex compiler options the "-debug=true" option. What am I doing wrong ??? Thanks! ...

Showing large amount of data in Flex Charts

Is there any solution where we can show large volume of data in Flex bar chart. The charts does not look good when the data increases ...

as3 control the volume of the microphone with a slider ?

anybody knows how to control the volume of the microphone with a slider ? ...

pyamf flex google app engine

Hi to all, I've just made a little server amf on gae and pyAmf ( now down?). Well I've also made a client in flex 4 and all works well. Now I'd like to add an authentication method, and I know that there a method in flex to authenticate using RemoteObject.setCredentials(username:String, password:String, charset:String = null):void ...

Show a progressbar on datagrid data update

It might sound like a trivial question but how can I show progress bars, when datagrids and other components that "talk" to web services, update their data providers ...

Flex URLRequest and .NET authorization

can I make role based authorization when sending requests to an ASP.NET MVC backend system. I am calling action methods and expecting JSON results, however, some action methods are decorated with the [Authorize] attribute, others require some role privileges to be present. I certainly hope that passing authorization data with every reque...

I have a problem implementing states in my Flex app, please help!

Hey guys, I'm trying to work out how to use states in my Flex app. I've created two states, State1 and Stage 2. Both are based off the base state. I've created a few visual elements for State1, and given each of them includeIn="State1". But when I'm in design mode and click on State2, these elements are still visible? Why is that? If ...

Flex service in debug

Hello everybody, I am trying to learn the new services method in flex 4. but i can´t get it work. A test oparation near the service in flash builder 4 works. But when i run the code i get NetConnection.Call.Failed: HTTP: Failed. Does somebody knows what the problem can be? Tom CODE: PHP <?php class AuthService { public funct...

The standard map/associative-array structure to use in flash actionscript 3?

I'm relatively new to flash, and is confused about what I should use to store and retrieve key value pairs. After some googling I've found various map-like things to choose from: 1) Use a Object: var map:Object = new Object(); map["key"] = "value"; The problem is that it seems to lack some very basic features. For example to even get...

Flex : providing data with a PHP Class

Hello, i'm a very new user to flex (never use flex, nor flashbuilder, nor action script before), but i want to learn this langage because of the beautiful RIA and chart it can do. I watched the video on adobe : 1 hour to build your first program but i'm stuck : On the video it says that we have to provide a PHP class for accessing da...

How to get sound data from all sounds you play at the smae time? (actionscript flash)

So If I play one sound I use sound = new Sound(); ... sound.addEventListener( SampleDataEvent.SAMPLE_DATA, onSampleData); sound.play(); And so I'll get data, but If I have 20 sounds playing and I want to get data from the sound I here as a resalt of data mix of all that sounds... How to get it? ...

When I run my Flex app, a different, older version is run?

Hey guys, When I hit the run button in Flash Builder 4, an older version of my app is being run. I can't for the life of me work out why this is happening. Can anyone help? Thanks. ...

centerPopUp centers the popUp but with delay

did someone else encounter this problem? I use the methods PopUpManager.createPopUp() and PopUpManager.centerPopUp() to create and center a pop up window but it looks strange, like the window is created at (0,0) and then reappears in the middle of the screen. how do I fix this? ...

Flex : where to find a free spider/radar chart component ?

Hello, i'm building my first RIA in flex, and did a little of research to find a radar chart component free, but all i found is not free (licence >500$). Where can i find it for free ? I'm student and i'm learning flex, so there is no point of buying component for now. Thanks ...

Flex / Flash builder : no returning data using database

Hello, i'm following some flex tutorials everything's working as wanted expected for one thing : When i use my function getServerByBrand($brand) there is no returned data into my datagrid and i don't know why because it uses the same schema as getAllserver() which is working . I don't know whether it's cause by the function itselft ...

Flex: Can I assign propertiy of multi-layer object to Chart's xField or yField?

Hi, I have a question about how to assign property of a multi-layer object to Chart's xField or yField. For example: var obj:Object = new Object(); var store:Object = new Object(); store.store1 = 300; store.store2 = 200; store.store3 = 250; obj.date = "2010/04/26"; obj.count = 2; obj.store = store; Because I have t...

Flex Drawing Library

Do you know any simple drawing libraries with align support (one component to other, also align to grid) I would like to implement simple editor of wall configuration in the apartments, by the way. Or, may be, there is no such component and is better to use Graphics class? ...