thanks for the reply,
I’m still having trouble understanding the process of getting the example working. do i need to wrap the example with a new project? and if so, how?
I read this tutorial
http://www.adobe.com/devnet/flashplayer/articles/creating-games-away3d.edu.html
and its says that there should be a FlashBuilder project file in the sample zip file that I can simply import to my package explorer, but there isn’t.
I also have problems with the Flash Player 11. I downloaded the Flex/AIR SDK (Flex SDK 4.6.0.23201/AIR 3.3.0.3650 SDK) from here http://gaming.adobe.com/getstarted/ shoul.d I download an additional specific version of Falsh Player or the SDK should come with one?
the thing is I added the -swf-version=13 to the compiler arguments and <renderMode>direct</renderMode> to the application.xml file.
but I still get this error
Error #2044: Unhandled ErrorEvent:. text=Error #3702: Context3D not available.
one last thing, on all the tutorials (also the 3.x) it say that I should use addChild to add my view. but I’m getting this error
Error: addChild() is not available in this class. Instead, use addElement() or modify the skin, if you have one.
I by pass it with
var uic:UIComponent = new UIComponent();
uic.addChild(view);
addElement(uic);
but I want to use the common practice. what am I doing wrong?
thanks,
Eran.