You can add a link to button and movie clip in SWF Quicker. The following tutorial is to show how to add an URL link to a button.
If you want to add email link to a button, choose this button and input following code in the Action panel.
(Note: the following code is just an example. You need to change the email address to your own when you add email link to your button.)
on(release)
{
getURL("mailto:support@sothink.com", _self);
}