PDA

View Full Version : Use dynamic scroll 's content to link internal scene??


ellipses
10-07-2003, 06:26 AM
is it possible to use dynamic scroll 's content and link it/ jump to scene 2 of my flash movie (i.e. on of my content text are able to hyperlink to the next scene of my flash movie) ?

i know how to do for external url but i not positive if its possible internally (scenes)

thanks:o

Xenozip
10-07-2003, 06:46 AM
I'm not sure either, but an alternative method might be this :

place a movieclip over the text you want to pseudo-hyperlink.
Set the alpha to 0% (so it's transparent)
edit the actions for the movieclip and set an onPress handler that calls a function :
_root.SkipScene();

next, edit the actions for the main timeline and add :
skipScene = function() {
gotoAndPlay("Scene2", 1)
}

Now whenever someone highlights that part of the text, the hand cursor will show, and if they click it will call the skipscene function, which jumps to the next scene.