PDA

View Full Version : motion via action script



bongbox
August 29th, 2003, 02:29 AM
i have 2 movieclips: i want to move both of them but the second movie clip will only move if the first clip reach his final destination how do i do that?

blah-de-blah
August 29th, 2003, 02:48 AM
if (clip1._x == whatever && clip1._y == whatever) {
//do whatever
}

isn't it just something like that?

bongbox
August 29th, 2003, 03:43 AM
want to see some example