flex4

Flex4 (codename Gumbo) SWF Filesize Speculations

I've heard that the components in the upcoming Flex 4 framework will be more loosely coupled possibly allowing for smaller filesizes for projects that use relatively few components. It this true? Or will the entire Flex framework still get bundled into each SWF that uses a single Flex 4 component? If it is true, and we could compile fai...

Compare Flex 3 and 4

Where can I find a chart or some article to compare Flex 3 and new 4. ...

Design mode not working for Flex 4 project

I'm trying to port a small Flex 3 AIR project to Flex 4 (Gumbo). Things are working quite fine. I can run and debug the application. But for some reason I can't use the design mode of my WindowedApplication. The head of the MXML file looks like so: <?xml version="1.0" encoding="utf-8"?> <WindowedApplication xmlns="http://ns.adobe.com/mx...

How do you remove the border of a Flex 4 TextArea Component (spark themed halo)

With the Flex 3 SDK you simply needed to set the borderThickness style to 0, or set borderStyle to none. With the Flex 4 SDK ad the Spark theme, this has no affect. ...

Set Flex component width to 100% at runtime?

If I am creating say a input field through MXML, I can set the width to 100%. But I cannot seem to do this at runtime through ActionScript. This works: <mx:TextInput ... width="100%" /> This wont compile, says width is a number, not a string: var textinp:TextInput = new TextInput(); someContainer.addChild(textinp); textinp.width = "...

Can't create flex4 project in flexbuilder using remoting or LiveCycle Data Servcies ES

I'm trying out the FlasBuilder ide with ColdFusion 8 on OS X. When I try to create a new project, I get stuck at the server setup screen that forces you to validate your paths for your ColdFusion root folder and your webroot. Every combination I try says either "LiveCycle Data Services is not installed at the specified location" or "In...

Alternative to Flex Framework

Is there an alternative ActionScript 3 lightweight framework out there similar to Flex, but not as huge. Flex is fairly large, and SWF's being no less than 150Kb big, I'm just thinking it must be possible to get something that have smaller SWF files as an end result. I've come accross AS Wing, and was curious if there's more. Thanks fo...

Label word wrap in Flex 4

How can the text in a Label control (or a similar control) be wrapped in Flex 4 beta? In Flex 3 I could use the Text control but this is no longer available in Flex 4. ...

Custom Preloader in Flex 4?

Has anyone successfully implemented a custom preloader in Flex 4? In my experience, when I specify a custom preloader using the preloader="com.foo.MyPreloader" in the Application tag, the preloader does not display until the SWF is completely downloaded, defeating the purpose of the preloader! Perhaps this is a bug in the still-beta Flex...

AdobeTV: Working with Data in Flex by James Ward - empWeb example in Flash Builder Beta

Hi, from video on AdobeTV I tied to play with example empWeb (LiveCycle Data Services). In Flex Builder 3 (FB3) all works fine. When I tried this on Flash Builder Beta (FB4) it don't work. When I replaced original xmlns declarations (2009, spark, halo) by declarations from FB3 (2006) it works. Could you explain why ? Thanks juro2 ...

How do I set the dataProvider for an <s:List> component to be an XML file?

I've got the latest Beta of Adobe Flash Builder 4. I want to use a <s:List> component, and specify the dataProvider as being an XML file. However, after loads of research (including looking at doc links off labs.adobe.com), I still can't figure out how to do it. The XML file will look something like this: <?xml version="1.0" encoding...

FLEX 4 s:Scroller, how to bring contained component into view?

Hi, I have lots of child text inputs within a spark Scroller. How can I make the TextInput with id of "x" come into focus if I have a..z id's, also for the scrollbar to scroll automatically to that child item? I can use x.setFocus(), but the scrollbar doesn't automatically scroll to that item? why? <s:Scroller id="scroller" width="100...

Any body have a flex 4 new feature list?

Whats new in flex 4 and better than flex 3? ...

Flex: Cannot tab between controls on a modal popup.

Steps to reproduce: Create a modal popup to popup with popupmanager (mine is a group with a skinnable container inside of it) Put field components (textinputs) on the modal popup Attempt to tab between controls. Tab switches to controls behind the modal-popup and ignores the fact that the modal is there. The tab loop only contains ...

Disable Flex CSS type selector warning?

I'm building a somewhat large Flex project that includes several modules (a single Flex project that produces multiple SWFs) Right now, I have a single css file, being loaded in the main SWF tag: <s:Application ... > <fx:Style source="css/main.css" /> ... </s:Application> In the CSS file: /* CSS file */ @namespace s "library://n...

Convert Flex Builder 3 project to Flash Builder 4

Hi, I just upgraded to Flash Builder 4 (beta 2) from Flex Builder 3 which I have been using since it came out. Problem: All the projects that were in my workspace from Flex Builder 3 did not carry over into Flash Builder 4 (e.g. in the "Flex Navigator" view if FB3). Flash Builder 4 now uses the .FXP format to manage projects, but Flex ...

Flash Builder 4 BlazeDS Problem

Currently, I'm trying to develop a rich internet application using Flash Builder 4 Beta In Flash builder 4 BlazeDS can be connected directly using Data menu. However, I face this problem where the program keep asking me to uncomment RDS Servlet, which I have already done so. Does anyone have similar problem? Thanks in advance ...

Running FlexUnit4 tests in Hudson with ant

I'm just starting to try figure out how to go about continuous integration and test driven development, specifically in Flex 4. I'd like to run FlexUnit4 tests from an ant script initiated in Hudson. I can get hudson to compile my app but how do I then go about running/seeing results of my tests? ...

Global States in Flex 4

Flex 4 introduces states that are localized within a skin, and within a component. This makes sense on an MVC model, so the visual elements can have their own states (i.e. for a button: up, down, over, etc.) which are separate from a component's state. Yet, how would one go about making a global application state? Is there something alre...

Buttons in AdvancedDataGrid in Flex

Is it possible to have a Button object in a column in an AdvancedDataGrid object in flex 4? And how would I do this? ...