…is there any way you can detect/retrieve the name of the label you are currently in? (i dont wanna use frames for certain reasons)
maybe this could help… ? :-\
that was pretty interesting! …but as of now, what im trying to make is a simple presentation… in which i have next n back buttons… let’s say i have 15 topics, 1 topic for 1 label… i guess im a bit lazy that i want my, say next button, to be in 1 layer, without cuts, and have same script… now, say im in topic7(label=topic7), when i click on the next button it will “automatically” go to label “topic8”…
var index = 1, topics = 15;
backButton.onRelease = function() {
index>1 ? index-- : index=topics;
gotoAndStop("topic"+index);
};
nextButton.onRelease = function() {
index<topics ? index++ : index=1;
gotoAndStop("topic"+index);
};
thanx man! that was brilliant! ;)!
i know…
yeah you always do! :Plol