Properties
The value of the title is “Properties”
The style of the title is “H2″
The colour of the title is “Green”
All properties, if it was instanced as Title, you could reference them as follows:
Title.value, Title.style, Title.colour… Much like in AS3
Think of a box, name it box and instance name it that too…
| Type | Property | Settings | Units |
|---|---|---|---|
| Position | x, y | box.x = 25, box.y = 145 | Pixels |
| Size | width, height | box.width = 100, box.height = 350 | Pixels |
| Scale | scaleX, scaleY | box.scaleX = 0.5, box.scaleY = 0.75 | Percent (0 -> 1) |
| Rotation | rotation | box.rotation = 45 | Degrees (0 -> 360) |
| Opacity | alpha | box.alpha = 0.4 | Percent (0 -> 1) |
| Visibility | visible | box.visible = false | Boolean |
Simples!

