|
This text is replaced by the Flash movie.
|
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|
#2 (permalink) |
|
First make sure that the image you are using for the button has the type "button". If it is not, in the library you can right-click to it, and type>button. Or just convert it at the stage to button (select the image>press F8> check button).
Then on the main scene, select the button with the black arrow and at the bottom open the Actions panel (make sure that your button is still selected) and add this code: on (release) { getURL("http://www.domain.com/"); } That's giving links to buttons. If you want to add links to texts, then it is easier. You just select the text, and in the bottom of "properties panel" you will see a link icon. You can just directly write your link to there. By the way, I am talking about MX 2004. Hope this helps. Cheers, Seawise
__________________
****RETIRED MODERATOR**** Last edited by seawise; 09-13-2005 at 01:33 AM. |
|
|
|
|
|
#3 (permalink) |
|
Don't forget that if you want the image to be displayed in a new browser window you will need to add the "_blank" parameter in the geturl too.
on (release) { getURL("http://www.domain.com/","_blank"); } Or if you are using frames substitute the _blank for the name of the frame you want the link to be opened.
__________________
Will "There are two ways of spreading light: to be the candle or the mirror that reflects it" (EDITH WHARTON) -- NEW Portfolio -- |
|
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|