flash-builder

Flash Builder 4 and Debugging

Hi guys, I just wanted to ask a simple question. I am trying to work out the pros and cons of setting up Flash Builder 4, for Flex development, as an ant-build vs compiling via the IDE. I particularly want to ensure i can do the following: - Debug and Trace via IDE - Unit Testing via IDE Is this possible through command-line buildi...

Unable to resolve resource bundle "*" for locale "en_US" (Flex, Flash Builder)

since I'm using custom skin classes in Flex I'm getting an error, when trying to open the design view in Flash Builder: Description Resource Path Location Type Unable to resolve resource bundle "components" for locale "en_US". Unable to resolve resource bundle "core" for locale "en_US". Unable to resolve resource bundle "effects" for...

how do I publish an air\swf app that will run with my as3 code as well?

Hi All, I will take advantage of the fact that this discussion is not answered yet to add some info and narrow down my problem. You can still download my project from the link below. It seems that my fla's document class in Flash Pro CS5 is not linked properly to the default application class in Flash Builder 4. What I mean is that w...

Flex Interface method createAutomationIDPartWithRequiredProperties error

Hi, I'm currently creating a class that extends UIComponent in Flex 3, but when the flash builder try to compile show me some errors 1044: Interface method createAutomationIDPartWithRequiredProperties in namespace mx.automation:IAutomationObject not implemented by class components:ArtWorkImage 1044: Interface method get automationEnabl...

Flex background not changed after changing theme

So I am pretty new to flex. I am developing an AIR application and I want to change my project theme to one of the additional included themes that is packaged with Flash Builder 4. So, I went to the Project Theme and changed it and it looks like it is supposed to in the Design View. When I run the application, the components (eg: a butto...

Eclipse XML editor in Flash Builder

Eclipse (at least the JDT package) comes with a pretty decent XML editor. Flash Builder (based on Eclipse), however, does not. Is there a way to install this XML editor into Flash Builder as a plugin? ...

All rounded corners TitleWindow in Flex ?

how can i get a title window with all rounded courners, so that i may make it whole round or circular shape ? i want shape like circle.. ...

adobe flash builder 4: css type selectors are not supported in components spark.components.Label

Hiya. I created a new MXML component that contains some labels and the following style: <fx:Style> @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; @namespace local "*"; s|Label { font-size:12; font-weight:bold; color:white; } #timeLeftHGro...

How to install Flash Builder 4 or a Flash Builder plugin on Eclipse in Ubuntu 10.04 ?

I want to install Flash Builder 4 or a Flash Builder plugin on Eclipse in Ubuntu. There are two methods I know to achieve it. 1. Use fb4linux. 2. Use wine and follow these steps http://diariolinux.com/2009/06/22/how-to-install-flash-builder-on-linux/ Second method gave me errors while installing. First method is good and installs...

FlexEvent.APPLICATION_COMPLETE never called in simple app

Hello, I've got a really simple flex application, with a main file Rec.mxml: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="215" minHeight="138" width="215" height="138" background...

Using as3flickrlib to search through a flickr group's pool

Hi all, I'm trying to work with the as3flickrlib, but I seem to constantly be running into trouble at every corner. Among other things that I want to do, I am trying to build a search function that only searches the photos returned from my groups.pools.getPhotos call. All the photos are being fed into an Array, so I'm wondering if I co...

How can I use URL parameters while debugging in Flash Builder 4?

How can I use URL parameters while debugging in Flash Builder 4? ...

Flex Datagrid within repeater - Data bind warning

Hi everyone, In my Flex app I am using a repeater to show a report on my database data. On this report the user can "drill-down" on the data to show more detail. In order to make this easier on the eye I have a header label and then a datagrid within the repeater. Whilst this works perfectly, because the dataprovider for the datagrid...

Can't Run this exe after Release Build in Flash Builder.

So my problem is that When I run this in flash builder It works great. But after I export release build it as a native installer I can get it to run but my button no longer activates my other exe. Any help would be great. Here is a copy of what my mxml looks like = new Vector.(); processArgs[0] = "hello";...

Showing XML Nodes from an Array Collection

Hi, I've got an XML Doc loaded in. I've created an Horizontal List and referenced the arraycollection as the Data Provider. But what I need to do now is then pull the data out from that. I have 3 nodes / variables. They are id, title, thumbnail. But when I go to pull through the data as : {videos.title} Flex Builder gives me the Error...

Using Ant tasks with Flash Builder 4

Can someone help me get started with using ant in Flash Builder 4. I have never used ant before so I'm a complete novice. I will need to know how to get it installed in the first place, and how to do the basics. Any help is appreciated. ...

Custom Controls and States

Hi, I've got an <mx:Button> in my application, I have 10 items in an XML Node. What I'd like to do is when the button is clicked show the next 5 XML Nodes. How do I achieve this? My code is as follows at the mo : <mx:Button x="1380.65" y="582.65" styleName="rightButton"/> The style is just setting the up / over and down states of t...

Removing the Scrollbar from Horizontal List

Hi, I've got an Horizontal List. It contains 6 XML Nodes at the moment. But what I'd like to do is remove the scrollbar so that an button can function to scroll through the nodes instead. Has anyone achieved this, if so how did you go about it? Thanks in advance ...

how to access all item renderer of MX: Tree in?

my renderer contains a canvas in it, i add some title-window, every time i see my tree previously added Title-Windows are visible, i want to access each n every item in tree and remove previosly added all windows from the rendere. so can any tell me how access all the item renderer in AS3 ? ...

how to access all item renderer of MX: Tree in?

can i access every item renderer of tree in as3 ?( note that i am using custom item renderer) lets say i want to add some button in canvas(children of custom itemRender).. like getItemRender().addChild(); ...