Forum Moderators: open
So far I have:
1. Created a new layer (it's been the first and last layer, resaved individually of course);
2. Used the rectangle tool with to draw a rectangle around the whole movie on the stage. Tried keeping the rectangle inside as well as outside the stage - made no difference);
3. Converted it to a movie clip (also tried to convert it to a graphic - didn't work);
4. Under Actions, I used this:
on (release) {
getURL("http://www.site_i_want_to_link_to.com");
}
And, it... just... doesn't... work! I drop the .swf into a webpage and it's not clickable, but the movie does play. From everything I've read, this "should" work just fine. What am I doing wrong?
1. select the rectangle
2. click insert > convert to symbol or press F8
Key
3. then give a name ("button 1") and select the Behavior as Button
4. click on the "OK" button
then you can use this code
on (release) {
getURL("http://www.site_i_want_to_link_to.com");
}
basically you cant use on (release), on (press) actions to a movie clip...
Bye,
Iresh.