kazamajin
03-27-2005, 06:47 PM
Ok I made a list box with kool moves but i dont know how to add a link to the text in the list box?? any ideas any one
necromanthus
03-28-2005, 03:47 AM
Originally posted by kazamajin
I made a list box with kool moves but i dont know how to add a link to the text in the list box?? any ideas any one
Let's suppose that your movie has 7 keyframes (pages).
Set the stop(); action for each keyframe.
Put the ListBox in the first keyframe. Keyframes 2,3,4,5,6,7 are your pages.
Insert 6 "items" in the ListBox:
name 1 : About Us
value 1 : 2
name 2 : Downloads
value 2 : 3
...
name 6 : Contact
value 6 : 7
Set this script for the "On Change" behaviour:
gotoAndPlay(listbox1.getValue());
that's all.
;)