Motion stopped on actionscript cloud effect

Asked By 0 points N/A Posted on -
qa-featured

Hi, I need help on making my actionscript cloud effect move after putting details on top of it. It worked well without the text earlier but when I added them the script stopped moving, I think I’m missing on a detail I can’t figure out just yet.

SHARE
Answered By 0 points N/A #195886

Motion stopped on actionscript cloud effect

qa-featured

Hi,

To solve this problem, you need to create a moving clip and attach some animation.

And name this clip “nask _nc”

Create two buttons namely “start” and “stop” in the moving clip.

Now write the below code in the clip:

  Start button

  On (press)

{

nask_nc.play();

}

Stop button

  On (press)

{

nask_nc.play();

}

Now run the moving clip .It will be work

Thanks

Related Questions