I’ve searched tutorials and I’ve gotten the code to ‘work’ both ways (action script on the button itself, as well as calling to it just in the general frame). This is the way I have it currently set up:
fbtn.onRelease=function(){
getURL(“www.kirupa.com”, “_blank”);
}
This works, but instead of taking me to www.kirupa.com, it actually tries to take me to my own site slash kirupa.com (i.e. www.mysite.com/www.kirupa.com)
I can’t figure out what I need to do to get it to go only to the URL i specify, do I need to use some kind of root command?
THANK YOU!!