Here’s a stripped down version of what I’m using in a Mac projector that’s on a CD-ROM:
protected function get urlRequest():URLRequest
{
return new URLRequest("http://www.kirupa.com");
}
protected function configureButton():void
{
this.button.addEventListener(MouseEvent.CLICK, this.click);
this.button.buttonMode = true;
}
protected function click(e:MouseEvent):void
{
navigateToURL(this.urlRequest);
}
Basically, all I want is a thing where:
[LIST]
[]a user puts in a CD-ROM
[]opens the projector
[*]clicks a button and the user’s browser goes to the specified web page
[/LIST]
This works fine on a PC projector. On a Mac, it never opens the page. It seems like the Mac puts the focus on the default browser program, but never goes to the URL.
Any help on this issue would be much appreciated. Even other solutions are fine. All I want is PC & Mac CD-ROM with a button that opens a page.