nub flash question
- Started
- Last post
- 8 Responses
- Moo
I'm currently doing a flash header/menu that opens up in a browser window with html content below.
http://numuro.co.uk/virtuoso/#
I need the buttons to target the bottom frame set does anyone know what sort of scripting I need for it to work
Thanks mOO
- blaw0
'nub'. hahahaha.
you target the link same as you would open a new browser, but with the name of the frame specified in the html doc.
- Moo0
Thanks blaw I've tried that and it doesn't seem to work here is what I am putting in
on (release) {gotoAndStop(39);
}
on (release)
{
getURLgetURL ("index.html", "content");
}any ideas what am doing wrong
- blaw0
i believe as reads from the top down.
that means that you've moved on to frame 39 before the geturl script is being read.
plus, the two on(release) tags should be combined into one event.
- Moo0
I told you it was a nub question Ive just found what was going wrong geturl was in twice.
Thanks blaw for help
- hUtChhOuSe0
Should be:
on (release) {
getURL ("index.html", "content");
gotoAndStop(39);
}
- Moo0
yeah thanks for the help just changed it all and it work fine I did say it was a nub question
thanks again
- stewart0
kewl