| with the BUTTON selected goto ACTIONS and type:
on (release) {
getURL("www.pixellogiclmt.com","_self");
}
obviously you would change the website, and you can change the target to _parent, or a 'Named' html based frame, etc.
to make things easier, think of how you want the event to be set off. roll over, mouse down, etc. plug this into the handler
on(MOUSE EVENT){ Action to perform; }
where the action to perform can be found in the BEHAVIORS panel |