Hello everyone.
First of all, thanks for reading my post.
I’m trying to run a basic example on flash develop, but it throws tons of errors..
package
{
import away3d.containers.View3D;
import flash.display.Sprite;
import flash.events.Event;
/**
* ...
* @author Anna
*/
public class Main extends Sprite
{
public var view:View3D = new View3D();
public function Main():void
{
if (stage) init();
else addEventListener(Event.ADDED_TO_STAGE, init);
}
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
view.backgroundColor = 0x000000;
addChild(view);
}
}
}
So I think it’s something wrong with the configuration.
The imports were made automatically by the flashbuilder editor.. so I know it can read the files.. but it just cant work with them..
Any ideas how to solve this??
Thanks a lot for your time.