"experimental"?

Out of context: Reply #52

  • Started
  • Last post
  • 86 Responses
  • PrayStation0

    here's how we do it.

    create an MC called "artwork" and import your swf into this MC.

    now since I live this trick we jammed all the info into a component (for easy reuse) however...

    we then run through the MC and push all the available clips to an array.

    this.target = this._parent[this.myTargetClip];

    // store clips in an array
    this.clips = new Array();

    for (var p in this.target) {
    this.clips.push(this.target[p]);
    }

    and I've never encoutered the errors you've been getting. and I've done this trick with up to 4000 MC's.

    hope this helps,

View thread