frozenpeas
Technical User
This:
traces:
or some such thing.
The problem is, I can't get the movie clips (gainer#) to do anything with the telltarget. I've tried referencing it the short-hand way, but that makes no difference.
Help? Thanks.
Code:
if (_root.count<=20) {
rdm = "gainer"+(Math.ceil(Math.random()*gainerQuantity));
label = labelArray[Math.floor(Math.random()*labelArray.length)];
tellTarget (_root.rdm) {
gotoAndPlay (label);
trace ("rdm = "+rdm+" and label = "+label);
}
}
traces:
Code:
rdm = gainer7 and label = good
rdm = gainer1 and label = good
rdm = gainer6 and label = bad
or some such thing.
The problem is, I can't get the movie clips (gainer#) to do anything with the telltarget. I've tried referencing it the short-hand way, but that makes no difference.
Help? Thanks.