Add a link in your flash banner or files:
- Convert your object in a button
- Go to the action script editor
- paste the code
on (release) {
getURL(”your-link”,”your-target”,”GET”);
}
on your-link you can add a full path like:
http://www.leosquarez.com/leosquarez-service/
or a simple:
/leosquarez-service/
if you are in the same domain.
on your-target you can specify:
- “_self” – Targets the window that the movie is in (MORE COMMON)
- “_new” – Opens url in a new window
- “_top” – Only useful in a framset, targets the top frameset
- “_parent” – Targets parent window in a framset
So a examples could be:
on (release) {
getURL(”my-page.php”,”_self”,”GET”);
}
Popularity: 2% [?]





