You can reference a MovieClip by clicking “Export For Actionscript” in the Linkage field of the library and giving it a class name.
For example, I click the box and give it the class name “page1”;
I can later access it with this code:
var mat1:BitmapAssetMaterial = new BitmapAssetMaterial("page1");
mat1.smooth = true;
mat1.oneSide = false;
I want to load JPGs dynamically (from XML) for Papervision. What’s the trick to being able to reference them properly?