0
votes
How do I set a flash object to open a url in a new window?
You need to do this in the flash with ActionScript
btnMovieClip.onRelease = function(){
getURL("http://www.yoururl.com");
};
Make a MovieClip that fills the wh …
