Thanks guys!

How silly, I typed it wrong! Fixed, but, now it has a problem with
1120: Access of undefined property_view

==============================================
package
{
        import away3d.containers.View3D;
        import flash.display.Sprite;
        import flash.events.Event;

        public class MyFirstApp extends Sprite
        {
                private var view : View3D;

                public function MyFirstApp()
                {
                        view = new View3D();
                        view.x = 275;
                        view.y = 200;
                        addChild(_view);
                        addEventListener(Event.ENTER_FRAME, onEnterFrame);
                }

                private function onEnterFrame(ev : Event) : void
                        {
                        view.render();
                        }
        }
}

=====================================


Actually, I'm not much of a coder - i'm first an artist. Is there some
other way I could get running with 3D in flash with less code? I mean,
the odd bit of action script like this is fine but i would like to get
to a point of experimenting with what it's capable of in an artistic
sense. Currently i'm just using flash player10 away3d 3.6.0 but would
like to try the molehill API when I get past this, exiting!

Great to be in contact with people on this, only discoverd it recently
and I don't know anyone who knows about 3D in flash.

Cheers!

Reply via email to