- What is difference between [Binding] , [Binding("eventName")]
- What is difference between x:XClass = XClass(y) and x:XClass = y as XClass
- How to set style values in action script
- What is ChangeWatcher, suppose ChangeWatcher does not exist, can you create one?
- How to access query string parameter of html hosting your flex app
- What is of labelFunction in List,DataGridColumn etc, how to use it
- How to use inline anonymous functions, and when to use
- Show an example of how will you use Function as arguments to methods
- What does operator >>>, ===, !== do?
- What is difference between encodeURI and encodeURIComponent
- How to do conditional compiling like #ifdef and #define in "C/C++/C#"
- What is difference between for..in and for each..in
- What does with keyword do
- Is there "Long" data type in flex (NO)
- How to set "#text" element of given element name in XML e.g. below...
how to add #text of child in
<parent><child/></parent>
as
<parent><child>child text</child></parent>
given name of child will be determined at runtime..
var x:XML = <parent><child/></parent>;
var n:String = "child";
Answer is
x.*[n] = "child text";