Properties in AS3 now use CamelCase. Here are some common DisplayObject properties.
ActionScript 2 | ActionScript 3 |
| _x | x |
| _y | y |
| _width | width |
| _height | height |
| _xscale | scaleX |
| _yscale | scaleY |
| _xmouse | mouseX |
| _ymouse | mouseY |
| _name | name |
| _alpha | alpha |
| _visable | visable |
| _rotation | rotation |
| _root | root |
| _parent | parent |
Post a Comment