I have develped a widget that i run through clearspring.
you can view it on my server
http://phonocraft.net/clients/blackmountain/indiemusicassault2008/
or on my profile in the music section
http://www.myspace.com/toonamo
Basically everything runs fine including loading php files off my server to run the internal functions.
What i need to know is how to i make links for the sponsers i have. I know that myspace has set the network access to internal so that external links will not work. Does anyone know a work around?
here is the code so you know what i am using now.
bmp.addEventListener(MouseEvent.CLICK, bmpClick);
function bmpClick(event:MouseEvent):void{
var bmpURL:URLRequest = new URLRequest ("http://www.blackmountainproductions.net/");
navigateToURL(bmpURL, '_blank');
}