Ok I found this to covert and load a as3 class.
I exported my model to AS3 class-> away3D

I selected Geometry option
When I saved the file I ended up with 2 folders. I called the class
House. I had House.as and aw_0.jpg.


Looking at how to load it from the below
https://www.packtpub.com/article/models-and-animations-with-away3d-3-6

        [Embed(source="images/aw_0.jpg")]               protected var 
AS3Material:Class;
                protected var model:Mesh;
        ....
        var modelMaterial:BitmapMaterial =
                                new BitmapMaterial(Cast.bitmap(AS3Material));

                        model = new House({scaling: 0.01}); ///error
                        model.material = modelMaterial;
                        model.z = 100;
                        view.scene.addChild(model);

Reply via email to