flex

Adobe Flex Development on Ubuntu...

I'm thinking the following: Netbeans + FlexBeans Maven + FlexMojos However: FlexBeans just doesn't compare with FlexBuilder Not sure FlexMojos supports Flex 4 How do you guys manage to develop Flex apps on Ubuntu? I personally prefer Netbeans to Eclipse. Netbeans has very good Maven project support. So I am thinking of: "E...

How to Change the Style in TileList Selected Item using Flex?

My TileList Contain some text Boxes. i want to change the text color if it's selected. Please any one help me.. Thanks ...

How we Access datagrid header checkbox

Hi all.. i am facing problem to access the datagrid header check box. i added a check box in a column with the help of headeritemrender,how i can access that check box. Thanks Atul Yadav ...

Draw text on shape in ActionScript 3

Is there any way to draw text in a DisplayObject or Shape using only ActionScript? The only way I can find on the web is by creating a TextField, but I can't add a TF to a DisplayObject or Shape. Edit: Solved thanks to viatropos. For anyone that's interested: DisplayObject implements IBitmapDrawable which can be passed as an argument...

ADVANCED DATA GRID: Setting properites of individual columns in grid mxml tag

Hi Friends, Is it possible to control the properties of 'advancedgridcolumns' in 'advanceddatagrid' mxml tag. For e.g. suppose the grid data provider has 3 different fields. Out of these 3 fields, one field is 'to_be_decided'. This field should not be displayed initially. Only the remaining 2 columns should be displayed (visible true) a...

Flex: Basic expectations from a flex(actionscript) developer

Hi Friends, Knowledge has no limits but still in your opions, what are the basic requirements for an individual, where he can call himself a flex developer. To make it a bit concrete lets say after having a 2-3 years experience. In my perspective it should be something like below. It is a very (very) rough idea and please let me know yo...

Encode HTML in Flex/Actionscript

Hi, Are there any functions available to convert: Me, Myself & I to Me, Myself & I I can't find anything in the Flex documentation. Thanks. ...

Flex builder3 is not generating html wrapper when targeting flex 4 sdk

In Flex builder 3 when I create a new flex application targeting the flex 4 sdk, it wont generate a html wrapper file. I have hunted around the web for answers, but no success. I have made sure the box is checked in the project properties to generate html wrapper. The only workaround is to target an older version of the sdk (i.e. 3.2),...

How many separate flash movies can be rendered on one HTML page before performance is noticebly smaller

Hi there, I'm currently developing a portal application that will require a number of Adobe flex elements. Each portlet could potentially be it's own flash movie. What I would like to know is how many of these portlets can be rendered in a browser on an average system before the number flash player starts using up too much memory and pe...

Flex LineChart data points don't match tick marks / axis labels

Can anyone tell me why the data points on the LineChart don't line up with the corresponding tick mark / horizontal axis label? See adobe's example (at the bottom of the page): http://livedocs.adobe.com/flex/3/langref/mx/charts/DateTimeAxis.html See how the data for 7/28/05 is to the right of the 7/28/05 tick mark / label? Anyone kno...

Is there a textArea for flex, which supports html-text with css formatting?

I would like create a text area with code highlighting in flex. Is there an advanced textArea witch suports css for real. For example: myHtmltext:String = '<span class="keyword"> #include </span>'; myTextArea:TextArea = new TextArea(); myTextArea.htmlText = myHtmltext; ...

Grid like tables components for Flex/Air

I'm looking for some king of components which will be more powerful then current Datagrid and AdvDataGrid in Flex SDK. I need Paging, Filtering, Dynamic Loading, On Cell Validation, Lookup Field from another resulset and some other features which related to working with database tables and views. We can develop all that ourselves, but we...

How can I get a datagrid to behave like the ctrl key is active?

I want my data grid to behave by default as if the user is holding the control key down. So when an item is clicked, then another item they are both part of the selection, clicking them again removes them from the selection. I already have allowMultipleSelection = true but I can't seem to find any setting that does this. I'm working on ...

data not being exposed in flash builder

Hey all, When I run the flex application, I'm expecting to see 25 records from users table of my database in a list component, and all I see is 25 of this: [object User] I tried to follow this tutorial: http://www.adobe.com/devnet/flashcatalyst/articles/building_datacentric_app_flashcast_flashbuilder_03.html but as he is using ColdFu...

In actionscript 3 how can I edit a textArea after applying a styleSheet?

Here is a portion of my code: var styles:String = ".keyword{color: #ff0000;} .comment{color: #00ff00;}"; var myStyleSheet:StyleSheet = new StyleSheet(); myStyleSheet.parseCSS(styles); myTextArea.htmlText = '<span class = "keyword"> red </span> uncolored <span class = "comment"> green text</span>'; Everything is fine till this point, ...

Accessing checkbox inside a Datagrid ItemRenderer

Good day StackOverFlow World!!! Having some troubles trying to resolve this. I hope someone can give me guidelines on how I would be able to achieve this. I need to reference a checkbox inside the datagrid. Below please find some codes I have used. <mx:DataGrid id="dgCurrentTasks" width="100%" height="100% "dataProvider={xmllcCurrentTa...

Finding x,y position of a datagrid / adavancedDataGrid row in Flex

I have flex advancedDataGrid (could use dataGrid if that works better, though i like my meta-column headers), and i want to have a component popup on top of a selected row. The problem is, i can figure out how to reference an actual rendered row of a datagrid (rather than an item of the dataprovider) in order to get its position on the ...

flex builder: how to populate an array from an external file of strings

hello i'm new to flex builder and trying to populate an array from an external file consisting of a list of strings. how do i go about that? should i use some sort of a data object? ...

Flex LineSeries - find y-value along curve

I've created a Flex LineChart that shows high and low tide predictions over time. I'm using the LineSeries with form="curve", which produces a nice sinusoidal wave graph, representing water level over time. The X-axis represents time, and the Y-axis represents water level. The only data points I have to work with are high and low tide v...

Adding Local Filenames/References To Array In Actionscript

how can i cycle thru a local folder to add all (or some) files names and references to that file in an array using actionscript 3.0? var fileArray:Array = new Array(); for (var item:Object in "../myFolder/") { trace(item.name); fileArray.push(item); } something like this? ...