Hi, I am developing a application on Android which has a split-screen feature.
I followed some of the steps inside the following tutorial to enable 2 views on the Desktop Emulator in Flash Builder which works fine
http://www.flashmagazine.com/Tutorials/detail/away3d_4_basics_-_the_view_and_the_scene/
with the following code snippet
var w:Number = 768/2;
var h:Number = 1024/2;
_view1 = new MultipleViewsView_v4(w,h,0,0,myScene);
this.addChild(_view1);
_view2 = new MultipleViewsView_v4(w,h,w,0,myScene);
this.addChild(_view2);
However, when I wanted to debug the application on the Android tablet, I got the “Too many Stage3D instances used” error.
I did a search on the forum which gave me the following thread
http://away3d.com/forum/viewthread/456/
“Also, can you make sure that you are not creating more than one View3D, which would cause this issue”
May I ask if multiple view3d could be supported on tablets? If so, is there any way to get a split-screen feature working on tablets?
Thank you!