Guest User

Untitled

a guest
May 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. public function createChildren() : Void
  2. {
  3. border_mc = createClassChildAtDepthWithStyles(
  4. _global.styles.rectBorderClass,
  5. DepthManager.kBottom, { styleName : this });
  6. // create the empty movie clips in the order
  7. // you want them stacked
  8. createEmptyMovieClip("face_mc",getNextHighestDepth());
  9. createEmptyMovieClip("hourHand_mc",getNextHighestDepth());
  10. createEmptyMovieClip("minuteHand_mc",getNextHighestDepth());
  11. createEmptyMovieClip("secondHand_mc",getNextHighestDepth());
  12.  
  13. setInterval(this,"tickTock",1000);
  14. super.createChildren();
  15. }
Add Comment
Please, Sign In to add comment