Yes, AS3 requires different code. AS3 does not allow code to
be attached to an object as AS2 does (that on(release){... } stuff
I mentioned dealing with as I did). getURL is also AS2 code, and is
not supported in AS3.
To link to another web page you would use navigateToURL().
Rather than shorthand it, which is often done, here's the 3 step
code for using it (place this code where the // Add your button
click actions here... comments are...
var url:String = "
http://www.mishgallery.com/salonbordello/testindex.html";
var request:URLRequest = new URLRequest(url);
navigateToURL(request, "_self");
The "_self" loads into the current browser window. To load to
a separate window you'd replace that with "_blank"
I type the code above from memory, so if it doesn't work due
to something I messed up, refer to navigateToURL in the help files
and there should be an example.