reconoce mc dentro de un mc (for in)


/ Published in: ActionScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. traceClips = function (timeline)
  2. {
  3. for (clipName in timeline)
  4. {
  5. if (typeof (timeline[clipName]) == "movieclip")
  6. {
  7. trace(timeline);
  8. traceClips(timeline[clipName]);
  9. }
  10. }
  11. }
  12. traceClips(this);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.