point3d
i am following some tutorial and i am stuck on 1 thing.
it was not explained and couldnt find how to it on google.
i have my point3D
var point3D:Vector3D = new Vector3D(0,0,0);
i have my text /// (myText is the exported class movieclip and only has text_txt in it) ////
var myText:MYText = new MYText();
i need like it to become like this, so i can use the point3D values.
(myText.point3D.z - camera.z);
(myTex.point3D.x - camera.x)
(myTex.point3D.x - camera.x)
but how do I assign/define the point3D to the textfield???
current i just getting
TypeError: Error #1010: not defined