Questions tagged [flex3]

Adobe Flex is a software development kit (SDK) released by Adobe Systems for the development and deployment of cross-platform rich Internet applications based on the Adobe Flash platform.

Flex applications can be written using Adobe Flash Builder or by using the freely available Flex compiler from Adobe.

The release in March 2004 by Macromedia included an SDK, an Integrated development environment (IDE), and a Java EE integration application known as Flex Data Services. Since Adobe purchased Macromedia in 2005, subsequent releases of Flex no longer require a license for Flex Data Services, which has become a separate product rebranded as LiveCycle Data Services. An alternative to Adobe LiveCycle Data Services is BlazeDS, an open-source project that started with code contributed in 2007 by Adobe.

In February 2008, Adobe released the Flex 3 SDK under the open source Mozilla Public License and so Flex applications can be developed using any standard IDE, for example Eclipse.

Source: http://en.wikipedia.org/wiki/Adobe_Flex

2777 questions
10
votes
2 answers

Flex clarification needed: width, min(max)Width, explicitWidth, explicitMin(Max)Width, measuredWidth, measuredMinWidth, percentWidth

Is anyone able to shortly explain the meaning of the different Flex size properties in a comprehensible way? What I have so far: Actual size width and height. This is the actual (and final) size of the component. If not set explicitly it will be the…
Kaken Bok
  • 3,395
  • 1
  • 19
  • 21
10
votes
4 answers

Flex Date() constructor is mis-converting Unix time stamps argh

This is seriously killing me. I'm trying to convert a Unix timestamp (1236268800, which equates to Thu, 05 Mar 2009 16:00:00 GMT) to a Date object in Flex. var timestamp:Number = 1236268800; trace(new Date(timestamp)); Output: Wed Jan 14 23:24:28…
Jarin Udom
  • 1,849
  • 3
  • 19
  • 23
10
votes
3 answers

Calling the zoom in and out of context menu from custom button in flex3

I want to call the zoom in and zoom out function of context menu from custom button In adobe flex application. Code something like this : onZoomInButtonClick() { this.contextMenu.customItems.zoom.doIn(); }
AsadYarKhan
  • 678
  • 2
  • 14
  • 31
9
votes
5 answers

What's the best way to hide a tab in a TabNavigator?

I'd like to conditionally hide a tab in a TabNavigator. It seems that setting visible doesn't work properly (presumably because this is how the TabNavigator hides the tabs that aren't currently selected). What's the right way to do this?
Scotty Allen
  • 12,897
  • 9
  • 38
  • 51
9
votes
1 answer

as3 scanHardware() function making my app crash

I am using ScanHardware function to get the updated Camera list. If plug in a Camera to my Mac mini, Camera length is being updated. If I plug out the Camera My app closes abruptly.
Vishnu
  • 11,614
  • 6
  • 51
  • 90
9
votes
1 answer

Programmatically detecting between Adobe Air and Adobe Flex in ActionScript 3.0

I have some shared code between an Adobe AIR App and an Adobe Flex App. On one line of this code, the program must behave differently depending on if it is running within the Air runtime, or the Flex runtime. How can I programmatically detect the…
Joshua
  • 6,643
  • 15
  • 55
  • 76
9
votes
3 answers

Flex DataGrid with ComboBox itemRenderer

I'm going spare trying to figure out the "correct" way to embed a ComboBox inside a Flex (3.4) DataGrid. By Rights (e.g. according to this page http://blog.flexmonkeypatches.com/2008/02/18/simple-datagrid-combobox-as-item-editor-example/) it should…
Jamie Love
  • 5,418
  • 6
  • 30
  • 33
8
votes
1 answer

TextField() Set caret position

How to set the caret position, there is only this.caretIndex (READ)
Tom
  • 6,725
  • 24
  • 95
  • 159
8
votes
2 answers

Flex tab navigator: initialize hidden tabs

My problem: I have a tab navigator, with many forms in each tab. But I have a single global save button. Problem is, if I don't open a Tab, it doesn't get initialized and therefore the forms it contains do not exist.. How Can I make it as if the…
luca
  • 12,311
  • 15
  • 70
  • 103
8
votes
6 answers

How to export a datagrid to Excel file in Flex?

How do I export data in my datagrid to an Excel file in Flex? Can anyone provide some examples for that? I am browsing but couldn't find out a single example of that kind. EDIT Browsed a lot and found out how to convert datagrid data to csv format.…
Angeline
  • 2,369
  • 22
  • 68
  • 107
8
votes
3 answers

How can I automate the building of a Flex component library?

I would like to build a flex library project automatically instead of the current process, which involves one of our developers compiling it on his machine and then us checking in the resulting .swc file. It's gross. I am coming at this from the…
Chris R
  • 17,546
  • 23
  • 105
  • 172
7
votes
9 answers

Flex ItemRenderer prevents use of tabbing between text inputs

I have a custom ItemRenderer that displays 5 text inputs in each of 3 panels:
Adam Tuttle
  • 19,505
  • 17
  • 80
  • 113
7
votes
6 answers

Calculating Dictionary length in Flex

What's the best way to calculate the length of a Dictionary object in Flex? var d:Dictionary = new Dictionary(); d["a"] = "alpha"; d["b"] = "beta"; I want to check the length which should be 2 for this Dictionary. Is there any way to do it other…
calvinf
  • 3,754
  • 3
  • 28
  • 41
7
votes
3 answers

Flex: Caching images in list item renderer?

I have a List and the item renderer displays an image. Whenever you scroll the list, and the item renderer refreshes, it redownloads the image. Causing there to always be a delay. Is there some way of caching it so it doesn't have to redownload…
JD Isaacks
  • 56,088
  • 93
  • 276
  • 422
7
votes
1 answer

How to create an overlay in advanced grid in Flex

I'd like to know how to create an "overlay" in Flex's Advanced Grid? See the sample here http://tinypic.com/r/4ieccm/4
Roman Kagan
  • 10,440
  • 26
  • 86
  • 126