Help: Flash of course

Out of context: Reply #1

  • Started
  • Last post
  • 10 Responses
  • ganon0

    //make all thumbs MCs and have the linkage properties set to "sq01", "sq02", etc....

    //max # of thumbnails
    this.maxThumbs = 4;
    //space between each thumb
    this.myBuffer = 10;
    //starting x
    this.startX = 0;
    //yPos
    this.startY = 25;

    //replace { with "less than" sign
    for (i=1; i{this.maxThumbs + 1; i++) {
    this.attachMovie (["sq0"+i], ["sq0"+i+"_mc"], i);
    this["sq0"+i+"_mc"]._y = this.startY;
    this["sq0"+i+"_mc"]._x = this.startX;
    this.startX += myBuffer + this["sq0"+i+"_mc"]._width;
    }

View thread