flash help please...

Out of context: Reply #2

  • Started
  • Last post
  • 8 Responses
  • thosethat0

    i tried that...

    to no avail...

    if it's any use, here's the script from frame one (there is only one frame):

    stop();

    for (i=0; i<60; i++){

    nm = "shape" + i;

    attachMovie ("shape", nm, i);

    my_id = number(substring(_root[nm]._name...

    _root[nm]._x = i+280;

    _root[nm]._y = i+100;

    _root[nm]._width = random(15)+1;

    _root[nm]._height = random(250)+5;

    _root[nm]._rotation = random(360);

    _root[nm].onEnterFrame = function(){

    this._rotation += Math.sin(my_id/5);

    }

    }

    any ideas..?

View thread