PDA

View Full Version : link to another webpage using flash button


shiz
11-25-2003, 09:05 PM
Hi all, as you can see im a pretty green newb. Im creating a simple button with FMX, and basically i want it to link to another page on a website once the button reaches the HIT state. Ive looked through various tutorials and everybody shows HOW to make the button, but how do i enter the actual URL of the page i want to reach with it????

thanks for your help.

cobo
11-26-2003, 06:43 AM
hi,
click on your button, open the AS menu and type:

on (press) {
getURL("http://www.whatuwant.com", "_blank");
}

cobo