A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: duplicateMovieClip

  1. #1
    Member
    Join Date
    Mar 2002
    Posts
    58

    duplicateMovieClip

    how i can duplicateMovieClip with diffrent color?

  2. #2

  3. #3
    Senior Member catbert303's Avatar
    Join Date
    Aug 2001
    Location
    uk
    Posts
    11,222
    Code:
    var d = 0; 
    var mc = firstClip.duplicateMovieClip("newClip" + ++d, d); // create a duplicate of the mc firstClip
    new Color(mc).setRGB(Math.random() * 0xffffff); // turn this duplicate a random color

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center