setProperty ("", _y, -45); what does "" means and how to convert it to as3
the know standard as2 format is like that
setProperty(myClip, _width, 200);
and its as3 format is
myClip.width = 200;
but here it should be
"".width=-45
but it will show error . in this case what is the solution ? how can i convert it to as3
