PDA

View Full Version : Linking a whole banner to a particular URL


kidisgood
05-31-2001, 10:47 AM
How do u link a flash banner(whole movie) to a particular URL?

Strok
06-01-2001, 02:53 AM
Make an invisable button on the size of banner


or you can have an invisable MC:

Place the following action on a MC:

onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse,_root._ymouse,true)) {
getURL ("http://www.actionscripts.org");
}
}

kidisgood
06-01-2001, 05:29 AM
How to make invisible buttons?

Strok
06-01-2001, 01:17 PM
1) make a button
2) select the button
3) change "alpha" to "0"

THOR
06-03-2001, 08:31 PM
you dont even need to make a button invisible using alpha, you can just create the button with only a hit state, and then just resize the button to cover the banner,

kidisgood
06-08-2001, 05:58 AM
Thanks