How to add a link to an object in SWF Quicker
2009-08-08 21:04:25
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.
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!
Replay
Leave a Reply
Hot
-
2011-07-20 20:25:49,30224 read
-
2011-06-12 02:05:37,11702 read
-
2009-11-28 02:02:08,7882 read
-
2009-11-12 02:37:14,6891 read
-
2009-10-12 08:24:35,6617 read
-
2011-10-26 20:27:20,5463 read
-
2009-11-26 08:08:23,4767 read
-
2011-08-22 21:13:04,4459 read
-
2010-08-03 20:59:53,4271 read
-
2009-08-08 21:04:25,3850 read
