flex

How to access the array elements

var count:uint = 0; var textInputs:Array /* of TextInputs */ = []; for(var i:String in columnsData){ textInputs[count] = new TextInput(); addChild(textInputs[count]); count++; } here how can i access the first, second of Array of textinputs in the form of string or any thing to further proceed ...

Unable to send MIDI file name to Java to playback music

I could play MIDI file where "filename" is a String type with "asd.mid" value. However, I tried to sent AIR's nativeprocess command to Java, it shown "could not read" error. How come? Java: private void playMidi() { if(isPlaying.equals("0")) { try { song = MidiSystem.getSequence(new File(filename)); ...

How to show this elements values

public var fieldInputs:Array=[]; var count:uint = 0; var textInputs:Array /* of TextInputs */ = []; for(var i:String in columnsData){ textInputs[count] = new TextInput(); addChild(textInputs[count]); count++; } public function ContinclickHandler():void { if(contin.label == "Continue") { Alert.show("Inside"); ...

Can any one please provide BlazeDS working with user identification?

Generaly all I want is to create simple Wiki like flex app using BlazeDS and Hibernate (like one provided in Enverse (part of Hibernate ) presentation Data Versioning and Envers Adam Warski JBoss / Red Hat)... Jeneraly I get how to do most of stuff to create service model but this is what I do not get: public class WikiListener implemen...

which one is better for chart and grid controls?? Flash/Flex VS Silverlight

Hi, I am developing an application which contains controls like tree,grid and chart. I personally feel silverlight is the best choice for it because its got strong third party controls from Telerik. But, as flash is much widespread compared to silverlight, some members in the design team is supporting flash. To my suprise, I haven't see...

Add ASDoc documentation to Flex Builder help

Is there any way to add my project documentation, generated with ASDoc, to the Flex Builder dynamic help? Or not necessarily to the dynamic help, but somewhere so that Flex Builder searches it when I press F1. I'm using Flex Builder 3 with SDK 3.2.0. Thanks. ...

Flash/Flex render culling

Does anyone have any knowledge (preferably with links to make it official) about how/if Flash/Flex culls objects not in view, to stop them getting drawn when not needed? A specific cases: I have an 800x600 panel (a Canvas or Sprite, or other container) containing loads of Sprites representing individual game objects like asteroids or s...

How to use event bubbling in Flex

Hi Actually I wanted to know what is bubbling event and how to make use of it. Also, what is the concept of capturing, targeting and bubbling too? If any one knows or could give any sample piece of code for explanation that would be helpful. ...

Flex White Board Application Development

Hi, I want to develop a white board application using flex.. Can anyone tell what are the requirements and how to develop it. My plan is to develop online class room. There should be text chat, video chat, voice chat, save current class and so on. Can any one help me. Or send me any reference link ...

fdb always starts in IE

I don't known what happened but fdb.exe now always start debug swf in IE And IE not my default browser! How to return its default behaiviuor? (embeded browser only with swf) ...

Flex Weblogic Blazeds Error

Hi all, I have Flex/Parsley/Blazeds application deployed on weblogic 9.x. The following error appears in the weblogic logs the very first time I try connect to server side java class using remoting. After the first time the application works fine...bizzarre any ideas would be appreacited thanks. FaultEvent fault=[RPC Fault faultStrin...

Flex 4 Modules & Ant - Error: Could not resolve "" to a component implementation.

I can compile the main application but am having an issue with compiling a nested module. I have the following application structure: src MyApp.mxml view MyView.mxml module MyModule.mxml view AnotherView.mxml When using the following command <mxmlc file="${SRC_DIR}/${MODULE_DIR}/MyModule.mxml" debug="false" output="${...

flex 4 : where is the style designer ?

hello, I just started using flex4 and I have a question: It seems there is no more the "style design" perspective like in Flex3 that allowed to apply css style visually. In flex4, when I open the css file, it is just a plain text and I have to edit it manually without wysywyg editor. Am I missing something ? How can I visually apply...

Intercepting Date objects coming from BlazeDS and adjusting for timezone differences

I am working on an application that is near the end of its development cycle and has mostly passed user testing. We recently realized that having flex convert dates to the client's local timezone is not desired, as all of our dates are in EST and contain no time data. Since BlazeDS sends dates in UTC, this results in the dates being conv...

Bindings failing when compiled through Flash IDE

I have created an API in AS3 that uses Flex bindings. The API is being used by two other developers. I am delivering the API in an SWC that includes all code, including the required Flex libraries. The two other developers are building the API into AS3-only projects. One developer is compiling using the Flex SDK through FDT. He includes...

Is there anything equivalent powerful in the Flex/Flash world like the Telerik Silverlight GridView to visualize data?

I was trying to find soemthing equivalent powerful like the Telerik GridView in the Flex/Flash world but without success. Could someone pls give me a hint? Or is there no vendor/open source etc. component library out there? ...

Flex - Override textinput to show custom tooltip

Hi, I'm trying to extend the spark textinput to create a custom component. When a tooltip message is passed to this component, it should show the tooltip message as an errortip on the rightside of the field. public class CustomTextInput extends TextInput { public var toolTipMsg:ToolTip; public function CustomTextInput() ...

Flex: Label Overflow

If I have two sibling canvases displayed next to each other, can I have a child Label (or any child component for that matter) in the left canvas overflow outside of that canvas and on top of the next? Something like this: ______________ ______________ | ----------------------------- | | | Label overflow test | | | -----------...

How to remove hover / rollOver effects globally on Spark components?

My goal is to remove all hover feedback from the UI. The motivation is for testing touch interface prototypes and not wanting users to have the queue of interactivity when the mouse hovers which they won't have with a touch interface. I have a partial solution but it has two problems: Requires an event handler on each component. Flick...

is it possible to drag and drop photos from desktop to Flex Web app to upload them?

I use Flex 4 wish I can let users drag/drop photos from their computer to the web app to upload them automatically. ...