Be a Supporter!

Loop every Movie Clip on the stage

  • 222 Views
  • 3 Replies
New Topic Respond to this Topic
Petwoip
Petwoip
  • Member since: Jan. 18, 2005
  • Offline.
Forum Stats
Member
Level 04
Blank Slate
Loop every Movie Clip on the stage 2009-02-18 13:59:31 Reply

The stage has a bunch of movie clips scattered around, and they each have different symbol names and instance names. Is there any conceivable way to create a loop that detects each movie clip on the stage and moves them all by 10 pixels to the right?


.

BBS Signature
TheSongSalad
TheSongSalad
  • Member since: Jan. 17, 2009
  • Offline.
Forum Stats
Member
Level 19
Audiophile
Response to Loop every Movie Clip on the stage 2009-02-18 14:26:30 Reply

if you're looking to do this over time. tween the whole stage.

Denvish
Denvish
  • Member since: Apr. 25, 2003
  • Offline.
Forum Stats
Member
Level 46
Blank Slate
Response to Loop every Movie Clip on the stage 2009-02-18 14:28:02 Reply

At 2/18/09 01:59 PM, Petwoip wrote: The stage has a bunch of movie clips scattered around, and they each have different symbol names and instance names. Is there any conceivable way to create a loop that detects each movie clip on the stage and moves them all by 10 pixels to the right?

for(var i in _root){
if(_root[i]._x!=undefined){
_root[i]._x+=10;
}
}


- - Flash - Music - Images - -

BBS Signature
Petwoip
Petwoip
  • Member since: Jan. 18, 2005
  • Offline.
Forum Stats
Member
Level 04
Blank Slate
Response to Loop every Movie Clip on the stage 2009-02-18 14:58:38 Reply

Hey, thanks a lot Denvish! It works!


.

BBS Signature