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
4
votes
3 answers

Data push to flex application from .net backend

I'm about to go into a large scale application (client-flex, server-.net). The server side is required to push data to the clients without them asking for it, this data can be tables from the DB or simply 2 integers the application needs to…
KensoDev
  • 3,285
  • 21
  • 38
4
votes
1 answer

Horizontal align components inside HBox from Action Script

Is there any way to set horizontalAlign from Action Script not from mxml?
zvjerka24
  • 1,772
  • 1
  • 21
  • 27
4
votes
3 answers

Eclipse switching branch from branch to trunk

I don't understand something that is happening on my Eclipse and I am wondering if this is my Eclipse problem or if this is actually a feature. I have a trunk and a branch. On the repository they are the same so no changes have been commited since I…
Dave
  • 598
  • 2
  • 4
  • 17
4
votes
2 answers

Actionscript 3 high precision time method (microseconds)?

I need a high precision time method in microseconds rather than milliseconds for actionscript, unfortunately I couldn't find much help on the web. I need such control in order to implement the usage of a fixed timestep in transitions as described in…
Tom
  • 8,536
  • 31
  • 133
  • 232
4
votes
1 answer

Can user disable sharedobjects in flex?

Can user disable SharedObjects in flex, just like as they do in case of cookies? And flex application can always store sharedobjects successfully in user's pc without getting any access denied error? I f this is the case will flex application will…
Pradeep Simha
  • 17,683
  • 18
  • 56
  • 107
4
votes
4 answers

Why there are no private constructors in AS3 version of Singleton?

I am confused: In AS3, why do we keep the Singleton class constructor public and not private, like in Java? If we keep the constructor public, then we can directly access it from the outside! Please check the MODEL part in this example.
TrexTroy
  • 303
  • 7
  • 22
4
votes
3 answers

How to support both HTTP and HTTPS channels in Flex/BlazeDS?

I've been trying to find the right configuration for supporting both http/s requests in a Flex app. I've read all the docs and they allude to doing something like the following:
digitalsanctum
  • 3,261
  • 4
  • 29
  • 43
3
votes
2 answers

Creating bindable classes from WSDL for Flex 3

Two of our apps are web applications with a Flex 3 front end and a SOAP-style WCF back end. To communicate with the back end, I generate web service client classes through Flex Builder 3. Everything's functional, but maintaining those generated…
Jacob
  • 77,566
  • 24
  • 149
  • 228
3
votes
5 answers

Flex app with large number of UI objects == slow?

I'm building my first Flex custom component, in Flex 3. It is a data table based on the 'Grid' container class, with a simple text Label in each cell. (DataGrid and AdvancedDataGrid were not appropriate starting points for my needs.) The component…
Aron
  • 1,552
  • 1
  • 13
  • 34
3
votes
1 answer

Create a Notification window in Adobe AIR Application

I want to create an AIR application in which i need to show the notification that when AIR application is minimize then at some interval of time message shows from the system tray similar like giving information. I have visited this LINK, its a nice…
Sagar Rawal
  • 1,442
  • 2
  • 12
  • 39
3
votes
3 answers

How to convert date to string in flex 3

i have a created a date related application in which i convert date into different string and number format like DD-MM-YYYY , DD-MM-YY etc
user1099934
3
votes
3 answers

Screen Sharing in Adobe Air

I am making a whiteboard application in Adobe Air. I want to share my screen with the other user and allow him to access my desktop, similar to remote desktop. I tried googling around but found no useful information on this. Can anybody give me some…
Sumit Ghosh
  • 3,264
  • 4
  • 40
  • 59
3
votes
3 answers

Pass data between flex components

I'm new to flex , so forgive me if this is a dumb question. Right now I'm using custom events to pass data from one component to another. My problem is that events only bubble up. How can I pass data to a component that isn't a parent of the…
KevMo
  • 5,590
  • 13
  • 57
  • 70
3
votes
2 answers

In Flex, how do I create, populate, and display a bitmap?

Starting from a totally empty MXML application: What is the script that will: create a bitmap (should this…
Eric
  • 11,392
  • 13
  • 57
  • 100
3
votes
2 answers

Disable WindowedApplication Resize in Flex

I'm trying to make it so the WindowedApplication in Flex is not resizable. However, resizable is a read-only public variable for the class. How do I make it so the user cannot resize the Flex application (running in Adobe Air)?
calvinf
  • 3,754
  • 3
  • 28
  • 41