why dont you just create a normal movieclip which adds the text from the
xml file then use the movieMaterial material as the material for that
plane..
ie, something like:
var movieClip:MovieClip = new MovieClip(); // this would be your
movieclip that contained the data loaded from the XML
var pMaterial:MovieMaterial = new MovieMaterial( movieClip );
var p = new Plane();
p.height = p.width = 200;
p.material = pMaterial;
hth
PK
metSyS wrote:
I'm interesting is it possible to add some text on some primitive. So
I have some primitive on a plane & some loaded data from xml file. How
to transform some string which have loaded text from xml, & add this
string to plane. May be some code example?