Hello again all

Have progressed along quite nicely with the creation and positioning
of the buttons on my 3D globe. However, I'm now having an issue with
the code and actually linking the buttons to a URL. I am currently
using the below code...

{
var sphere = new Sphere({radius:3, segmentsH:3, segmentsW:3,
material:"orange#orange"});
view.scene.addChild(sphere);
sphere.z = 303;
stage.addEventListener(MouseEvent.MOUSE_DOWN, MouseDown);
function MouseDown1(event:MouseEvent):void
{
var request:URLRequest = new URLRequest("http://groups.google.com/
group/away3d-dev/");
navigateToURL(request);
}
}

But this isn't working at all....

Any help you guys could give would be greatly appreciated.

Many Thanks

Josh

Reply via email to