A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Duplicate Moive Clip and Dynamic Text

  1. #1
    Junior Member
    Join Date
    Apr 2001
    Posts
    15
    Hello,
    I have a movie clip called box and a button
    i want to duplicate movieclip when i pressed the button
    5 copied of duplicate and display on the stage
    and plz could anyone tell me wht is dynamic textbox
    wht is purpose of dynamic textbox?

    Bye

  2. #2
    Senior Member
    Join Date
    Feb 2001
    Posts
    475
    in the main timeline in the first frame put this:

    i = 0;

    in your buttons action do this

    on (release) {
    duplicateMovieClip ("box", "box" + ++_root.i);
    }

    this duplicates the movies after each click...

    dynamic text-boxes are used to display data or text that changes everytime or during a Movie plays - stuff that is retrieved from a database - think of player names, time left, ....

    Yours
    HTD

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