XML stands for EXtensible Markup Language. XML was introduced to hierarchically structure, store and transport data or information. In ActionScript XML class was created to handle XML Objects. But in later versions of ActionScript that is in 3.0, they implemented the powerful XML-handling standards defined in ECMAScript for XML E4X specification. This was one of the most significant changes to ActionScript 3.0.
Continue reading
XML In Flash ActionScript 3.0
Delete a node from XML Object in ActionScript 3.0
Deletes the XML elements or attributes specified by reference. When used with an XMLList operand, the result of the delete operator is always true because the XMLList operand always refers to a valid (though possibly empty) XMLList object. Continue reading
Javascript Common Escape Sequences
It’s better coding practice to use escape sequences, because they make your code easier to read. Escape sequences are also useful for situations where you want to use characters that can’t be typed using a keyboard. Continue reading
Double Click Event in Action Script 3.0
In Flash Action Script 3. 0 the Mouse Double Click event is disabled by default. The most commonly used event is single click. If you want to use the DOUBLE CLICK for an object, you need to enable the doubleClickEnabled value.
Action Script 3.0
var myButton:Sprite = new Sprite; // Enabling the double click for myButon myButton.doubleClickEnabled = true;






