A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: make MC invisible by default

  1. #1
    Junior Member
    Join Date
    Sep 2001
    Posts
    5

    I would like to have all of the child movie clips in my movie start out invisible. I would prefer to do this by setting the visible property instead of alpha or any other way. Is there a way to do it without code?

  2. #2
    Member
    Join Date
    Oct 2001
    Posts
    44

    Cow Icon

    There are two methods (or more):

    1. But this also hides parent clip:
    Code:
    onClipEvent (load) {
     this._visible=0;
    }
    2. Add this when duplicating MC`s:

    for example:
    Code:
     duplicateMovieClip(MCname, newName, newdepth);
     newName._visible=0;
    ZeroIQ

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