PDA

View Full Version : Hyperlink Problem



totalservers
07-04-2003, 03:17 PM
I have a flash file and am trying to add hyperlinks to the buttons. However when I publish the settings the links do not work.

Please could someone have a look and give me your ideas on what i have done incorrectly.

jeet
07-05-2003, 07:13 AM
Hi,

Add the action script below on button

on (release) {
getURL("http://www.flashadvisor.com", "_self");
}


OR

Check the Symbol, when you create the symbol it must click on button tab.

OR

If you are using the text button, edit the button follow the stap

1. create a blank frame
2. make a box layer on text
3. select the box and set the alpha 0

after that try it

if you have more queries feel free to put here !

Regards
Jeet

jeet
07-05-2003, 07:31 AM
Hi there,

Actuly i did't see the attachement !

Error in the file is you are using two button in this movie

one is main and another is in the main button,
you must enter the action script in inner button and you will see it's working

feel free to put another question

regards
Jeet

totalservers
07-07-2003, 10:22 AM
please could you explain this to me a bit more... i am very new to flash

jeet
07-07-2003, 01:21 PM
hi there,

In the attach fla there are two button in same bar

1. hyperlink
2. symbol 2 in case of if you edit the about us button

when you edit the about us button in its UP frame there is an another button name symbol 2 please use this button to send any action script,

right click symbol 2 button add action on it its's working

if you have another query put it here

regards
jeet

totalservers
07-08-2003, 01:54 PM
Thank You very much for you help! I have now got the hyperlinks working! :)

Voetsjoeba
09-01-2003, 11:18 AM
If you want it to open in a new page instead of he same, use


getURL("http://www.server.com/page.html","_blank")

;)