kottore / away3d

Automatically exported from code.google.com/p/away3d
0 stars 0 forks source link

[broomstick] can not render load externel swf file contains 3d objects #192

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I try to load a externel swf file that contains 3d object ,
Code:
                        stage.scaleMode = StageScaleMode.NO_SCALE;
            stage.align = StageAlign.TOP_LEFT;
            var myLoader:Loader = new Loader(); 
            addChild(myLoader); 
            var url:URLRequest = new URLRequest("sample.swf"); 

            myLoader.load(url); 
            myLoader.x=0;
            myLoader.y=0;

if in the loaded swf file i trigger _view.render(),
what i got is a total blank screen on the main screen.
but if i do not trigger _view.render(),i can still see those 2d objects in the 
loaded swf file like AwayStats, Textfields, on the main screen.

I wonder if there is any solution to this problem?
Im using flashplayer 11 beta and newest broomstick API for 11 beta.

Original issue reported on code.google.com by woai...@gmail.com on 4 Aug 2011 at 8:18