How to add a link to an object in SWF Quicker
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.
Helpful Hints:
Q:How can I make a simple button?
A: Please refer to the tutorial guided on creating a button.
Q: Besides button, what other symbol can I add ActionScript to?
A: The ActionScript only can be added to Keyframe, button and movie clip.
So before you add a link to an object, please make sure that it has been converted into a symbol like button or movie clip at first.
Q: Can I specify the window into which the document should load?
A: You can enter the name of a specific window or select from the following reserved target names:
- _self specifies the current frame in the current window.
_blank specifies a new window.
_parent specifies the parent of the current frame.
_top specifies the top-level frame in the current window.
Just like the following:
Code: |
on(Release) { getURL("your link address here", "_self"); } |
Q: How to add email link in Flash movie?
A: The same way with URL link.
Choose this button and in the Action panel input:
Code: |
on(release) { getURL("mailto:support@sothink.com", _self); } |
Note: you should use quotations to surround the URL and target.
If you have any other questions, please leave your words here. Thanks in advance!