[flexcoders] Arrays, iteration, and referencing local variables?

2007-11-30 Thread flexnubslice
I'm trying to do something like this, but am unsure of the proper language constructs in Flex: var a:String = ; var b:String = ; var c:String = ; private function initApp():void{ var elements:Array = [ a, b, c ]; for( var i:String in elements ){ if(

[flexcoders] Passing Parameters, is something like this possible with Flex?

2007-11-30 Thread flexnubslice
Instead of posting a ton of : if( Application.application.parameters.x) this.x= Application.application.parameters.x; if( Application.application.parameters.y) this.y= Application.application.parameters.y; ... ad nauseam ... I was wondering if it was

[flexcoders] Tracing HTTPService Data?

2007-11-28 Thread flexnubslice
Hi there, Thanks in advance for your help. I'm a newcomer to Flex, but am definitely not new to Eclipse being a Java programmer by trade. I've set up a basic HTTPService as introductory project, and quickly found that I can add breakpoints into fault and result events. What I cannot find