Hi there, this is from a previous AS post from kode: for playing random labels …
[AS]
var labels = [“beer1”, “beer2”, “beer3”, “beer4”, “beer5”];
var frame = labels[Math.floor(Math.random()*labels.length)];
_root.amstle.gotoAndplay(frame);
[/AS]
basically its not playing the labels randomly. Not sure why… looks like it should work…
Is there another way to do it, besides storing the labels in an array.
Any sugg… much appreciated…
mako