My account
Shopping cart
Knowledge base
Support


Loader Pro V3 XML



Overview | Properties | Methods | Events | XML

view a XML sample file

V3 Component XML standard files you can hold and set the following data:

  • component properties
  • xml data used by the component (not the case)
  • style data (not the case)

the V3 Component XML basic file structure is the following:

<component>
      <properties>
           <propertyName>
                    <type>propertyDataType</type>
                    <value>propertyValue</value>
           </propertyName>
           ...
     </properties>
</component>

Component properties

All properties that can be set from Component Inspector, can also be set with this V3 XML type of file.
You can also set properties for the component that are standard MovieClip (or other extended class) properties, such as _x, _width, _xscale, _alpha, etc for AS2 or x, width, scaleX, alpha, etc for AS3.

All properties has to be declared like in the following example:

<contentPath>
      <type>String</type>
      <value>img093.jpg</value>
</contentPath>

Overview | Properties | Methods | Events | XML