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
40
votes
12 answers

Flash versus Flex

I've tried looking everywhere for a concise list of the advantages and disadvantages of using Flex vs. Flash. Coming from a programming background, I absolutely love Flex. It's easy to pick up, and since it can use flash classes, why would I want…
Zack Marrapese
  • 12,072
  • 9
  • 51
  • 69
38
votes
5 answers

Fastest way to delete one entry from the middle of Array()

What is the fastest way to delete one specific entry from the middle of Array() Array is large one having Strings. I dont want just to set Array[5] = null, but instead array size should be reduced by one and array[5] should have content of…
Tom
  • 6,725
  • 24
  • 95
  • 159
32
votes
6 answers

How can I get an instance's "memory location" in ActionScript?

FlexBuilder's debugger will show you the "memory location" (or, I can only assume, something roughly analogous) of any in-scope instance: But I'd like to get this information in code (sort of like Python's id function), so I could very easily trace…
David Wolever
  • 148,955
  • 89
  • 346
  • 502
31
votes
8 answers

How can I get list of properties in an object in Actionscript?

I have a dataprovider and a filterfunction for my array that's assigned to my dataprovider. How can I get a list of the properties that are in each row of the dataprovider (item.data) as it gets passed to the filterfunction? For instance, if my…
GeoffreyF67
  • 11,061
  • 11
  • 46
  • 56
24
votes
7 answers

Flex Warning: Unable to bind to property 'foo' on class 'Object' (class is not an IEventDispatcher)

I've got an object that contains a dozen or so fields I want to bind to form elements, so that I can use that object to send the data back to the server to be saved. Definition of my container object: private static const emptyLink:Object = { …
Adam Tuttle
  • 19,505
  • 17
  • 80
  • 113
20
votes
5 answers

As3 - How to clear an array efficiently?

I've been looking to clear an array in ActionScript 3. Some method suggest : array = []; (Memory leak?) Other would say : array.splice(0); If you have any other, please share. Which one is the more efficient? Thank you.
ALOToverflow
  • 2,679
  • 5
  • 36
  • 70
19
votes
1 answer

Runtime problems after migrating from Flex3 to 4 in compatibility mode

We are migrating our Flex-3.2 application to Flex 4.1, mainly to take advantage of the new text flow/engine features. In a first step we decided to go with compiling for MX-only and in Flex-3-compatibility mode. Thanks to some helpful resources…
Stefan
  • 1,325
  • 12
  • 25
16
votes
4 answers

Building a Plugin Architecture with Adobe AIR

I'm thinking of choosing Adobe AIR as the client-side implementation technology for an upcoming project. (The previous choice was C# and WPF, but I've been really impressed with Flash/Flex/AIR lately.) But one of the most important features of my…
benjismith
  • 16,559
  • 9
  • 57
  • 80
14
votes
1 answer

inner class in AS

for example: package{ public class A { var test:String; public function A() } } class B{ } the code is in the same file, we call B is inner class, then how to call the constructor of class B
jason
  • 1,621
  • 6
  • 21
  • 39
14
votes
4 answers

Capturing user input from Flex TextInput control: which event to use?

Should I use the change or textInput event to capture user input on a TextInput control? Why?
Niko Nyman
  • 1,916
  • 2
  • 16
  • 26
14
votes
4 answers

ADD COLUMN to sqlite db IF NOT EXISTS - flex/air sqlite?

I've got a flex/air app I've been working on, it uses a local sqlite database that is created on the initial application start. I've added some features to the application and in the process I had to add a new field to one of the database tables. My…
Adam
  • 2,632
  • 8
  • 34
  • 60
14
votes
1 answer

Trace on Chrome/Browser console

Does anybody know how to trace messages in the google chrome console using Flex3. In the logs section for example.
Dave
  • 598
  • 2
  • 4
  • 17
13
votes
4 answers

Flex performance considerations

What are the main key-points a Flex developer should remember in order to improve performance of Flex applications? The ones which come to my mind are: extending ItemRenderers from more lightweight base classes: i.e. UIComponent using…
Maria Sakharova
  • 1,389
  • 15
  • 15
13
votes
11 answers

Howto embed images in Actionscript 3 / Flex 3 the right way?

I'm creating a game where a lot of images are being used in Actionscript / Flex 3 (Flash). Now that I've reached the designer stage, I have to work out a structural way of using embedded images (which have to be manipulated with rotation, color,…
Tom
  • 8,536
  • 31
  • 133
  • 232
11
votes
6 answers

How does one define a default style for a custom Flex component?

I'm creating a new Flex component (Flex 3). I'd like it to have a default style. Is there a naming convention or something for my .cs file to make it the default style? Am I missing something?
Kevin Moore
  • 5,921
  • 2
  • 29
  • 43
1
2 3
99 100