Hello everyone,
I would like to ask if it is possible to convert this AS2 code into AS3.
var count = 0;
_root.onMouseMove = function()
{
_root.attachMovie("MCTween", "MCTween" + count, count);
_root["MCTween" + count]._x = _xmouse;
_root["MCTween" + count]._y = _ymouse;
_root["MCTween" + count]._rotation = Math.round(Math.random() * 800);
count++
}
Thanks in advance