XML In Flash ActionScript 3.0

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

Posted in Flash | Tagged , , , , , | Leave a comment

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

Posted in Flash | Tagged , , , , | Leave a comment

Vertical Floating Menu With Accordion Effect Using CSS & jQuery

It is a combination of 3 types of menu styles, Floating, Sliding and Accordion with the css and jQuery.  The menu will appear in the screen as a floating menu, on mouse over the menu will slide(visible) from left to outside. And on mouse out event the menu will slide to left. On the menu you can click on each item, and the sub-entries will shown with an animated effect. While window scrolling the menu will hide to left-side and floating on the same position. Continue reading

Posted in Javascript, jQuery | Tagged , , , , , , , , , , | 1 Comment

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

Posted in Javascript | Tagged , , , | Leave a comment

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;

Continue reading

Posted in Flash | Tagged , , , , | Leave a comment
Page 2 of 20123451020...Last »