758 Chapter 12: ActionScript Dictionary
XML.contentType
Availability
Flash Player 6.
Usage
my_xml.contentType
Description
Property; the MIME type that is sent to the server when you call the XML.send() or
XML.sendAndLoad() method. The default is application/x-www-form-urlencoded.
See also
XML.send()
, XML.sendAndLoad()
XML.createElement()
Availability
Flash Player 5.
Usage
my_xml.createElement(name)
Parameters
name
The tag name of the XML element being created.
Returns
An XML element.
Description
Method; creates a new XML element with the name specified in the parameter. The new element
initially has no parent, no children, and no siblings. The method returns a reference to the newly
created XML object representing the element. This method and
createTextNode() are the
constructor methods for creating nodes for an XML object.