hi im fairly new to flash and will appreciate any and all help given.
my aim is to get the movie clip (bar shapes) to move up and down randomly over time.
this is the actionscript ive done so far.
by the way im using flash 8 so i beleive that its actionscript 2.
[COLOR=Red]on enterFrame
{
var someValue:Number = Math.random()*100;
}
for (var k : Number = 0; k++; k<10)
{
"bar" + k + "_mc"._yscale = someValue;
};
_root[“bar” + k + “_mc”]._yscale = 50;[/COLOR]