Those warnings are correctable.
Wrap the node expression, which is probably currentItem or data, or
selectedItem which are objects, in the XML() function.
text="{XML(myDG.selectedItem).myNode.text()}"
Tracy
________________________________
From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of stoff0
Sent: Tuesday, December 09, 2008 7:58 PM
To: [email protected]
Subject: [flexcoders] Disable Runtime Binding Warnings
Is there anyway to stop binding warnings (or all warnings from being
logged to the console)? I've tried to turn off warnings with compiler
arguments like:
-compiler.show-binding-warnings=false
-warnings=false
I also tried unchecking "enable warnings" checkbox in flex builder.
It looks like none of these have an effect on "runtime warnings"
(warnings that get logged to the console)
For some background the reason I'm attempting this is because I'm
getting about 200 warnings on some xml binding and it's really slowing
things down for me and probably everyone with the debug player.
Thanks!