I want the button in my flash movie to jump to seperate html page called bios.html and go down to the anchor “kbrown”.
I tried putting this code on the button. It went to the correct page but didn’t scroll down to the anchor
on (release) {
getURL("bios.html/#kbrown", "_self");
}
I found some code by senocular that I tried but it didn’t work either
on (release) {
getURL("javascript:location.href=location.bios + \"#kbrown\";void(0);", "_self");
}
Can anyone help me out