flex-builder-3

Flex Builder 3 executing old source codes

I'm facing this problem again and again, but can't find any solution (except mine, which is not as a good one I guess). Don't know why, sometimes Flex Builder executes old source codes after making changes. While debugging I see how it steps through a source (e.g. changing local variables) which does not exist (even if I delete all that...

What to do if Flex Builder 3 debugger unable to start

Hello. I'm using Flex Builder 3 now and it suddenly refuses to start debugging session. I've reinstalled debugger versions of Flash Player: both 9 and 10 versions. Then I've reinstalled Flex Builder itself allowing it to install it's native Flash Player version. And finally, I've tried to use both IE and Firefox as host for player under...

Drop enabled, but no updation to the dataprovider in datagrid in Flex

I have two datagrids with data. dg1 is dragEnabled=true and dragMoveEnabled=true. dg2 is dropEnabled=true. When I drag drag items from dg1 to dg2, two changes occur. 1)Item is removed from dg1 2)Item is added to dg2 But I dont need the second thing to happen. Items from dg1 should be removed and items should NOT be added to dg2. Can s...

Image map in Flex

Anyone have an example of doing something like an image map in Flex? I'm not sure if that is the correct term, since I also want to do things like highlight the selected part of the image or show a popup bubble pointing to it. Any ideas? ...

What is the best way to put a Flex3 project under source control (subversion)

Setting up Flex project for group development can be a bit tricky. There are lots of little local settings that might need to be tweaked in order to have a project that can be easily checked out. I've had limited success using the built-in import/export flex project utilities. I seem to wind up editing by hand a lot and I think I migh...

Can I program Java with Flex Builder?

I have no experience with Java, but I want to learn it. I have been using Flex Builder standalone for a few months now, and am familiar with eclipse now. So since Flex Builder is basically eclipse, can I program Java with the same copy or do I need a new installation of eclipse to program Java? Also if anyone can point me to a tutorial t...

How to import flex on eclipse

Hi All, I am using the linux Flex builder with eclipse 3.3 on my ubuntu 8.04 machine for the very first time, and I need to modify a preexisting flex project. How do I import this project (its version controlled branch of the flex project) to my eclipse environment. I have tried creating a new flex project in eclipse and linking...

Severe Flex issues.

I seem to be having difficulties getting the trace function to output anything to the console in either Eclipse with the Flex Plug-in, Flex Builder, or even FlexBeans (the Netbeans plug-in for Flex). I have removed and then reinstalled the Flash player 10 debugger version for both Firefox and IE, rebooting after uninstalling them and th...

Flex compiler warning - variable 'item' has no type declaration

I am tyring to learn flex programming myself. Below code gives me a warning variable 'item' has no type declaration. var xml:XML = xml as XML; for each (var item in xml.employee) { Alert.show(item.@name); } What is the type of variable item? I thought it was XMLNode, but it give me error. I want to remove the compil...

Must be a simple mistake I'm making: Flex CSS style not working in a trival case

I must be making a simple mistake (new to Flex). Here is main.mxml: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#ff0000"> <mx:Style source="/testing123.css"/> <mx:Canvas top="0" bottom="0" left="0" right="0" styleName="bg-lowl...

Is there a way to bind my flex builder to my django application

Hi! I am trying to create simple flex application, which uses django as a back-end part. Have a question: Usually when I run my application Flex Builder creates a file in a directory on my local PC and then opens a browser and points to it. Everything was fine, but when I decided to link django server to flex applications via xml data ...

Component names and ids in Flex and Actionscript, where do they come from?

To illustrate my question. Assume the following code snippet: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"&gt; <mx:Script> <![CDATA[ import mx.controls.Button; private function createButton():void { var myButton:Button = new Button(); myButton.label = "...