
August 10th, 2012, 05:56 AM
|
|
Registered User
|
|
Join Date: Sep 2008
Posts: 3
Time spent in forums: 29 m 46 sec
Reputation Power: 0
|
|
|
ActionScript 2 - Please Help: Pausing One Movie Clip While the Other Mooves.
My Requirements Is simple: Within the Main Movie Clip,
I have:
Pluto_mc (Labeled as in the Below Code)
Mars_MC (Labeled as in the Below Code)
And a Action layer
In the Action Layer:
Code:
this.Mars_mc.onRollOver = function ()
{
this.stop();
}
this.Mars_mc.onRollOut = function ()
{
this.play();
}
this.Pluto_mc.onRollOver = function ()
{
this.stop();
}
this.Pluto_mc.onRollOut = function ()
{
this.play();
}
This Works, Both Vector Spheres are traveling to the Path within the MC.
But a Strange thing Happens, When Mouse Over the Pluto_MC (This Stops) but when the Mars_mc reaches the Pluto_Mc Path, which users a Guide, the Pluto_MC Move and the Mars_MC Stops.
Any Advice please help.
Whats the Best Way to Pause a MC while the Other MC Moves without any Problem.
|