Depending upon the selected object, the following Actionscript will create a hyperlink:
Method 1
on(release){
getURL("http://www.smartnetadmin.com", "_self"); //or _blank for a new window.
} ;
Method 2
on(press){
getURL("http://www.smartnetadmin.com", "_self"); //or _blank for a new window.
} ;
http://www.smartnetadmin.com
Method 1
on(release){
getURL("http://www.smartnetadmin.com", "_self"); //or _blank for a new window.
} ;
Method 2
on(press){
getURL("http://www.smartnetadmin.com", "_self"); //or _blank for a new window.
} ;
http://www.smartnetadmin.com
Comments
Post a Comment