A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: How do I stop Rotation Made Easy....?

  1. #1
    .....<<>>>.....
    Join Date
    Apr 2000
    Posts
    120
    Ok-
    I'm probably making this more complicated than it should be-Messing around with the tute "Rotation Made Easy", and what I want to do is place a button on one corner of the box that rotates with it and will stop the rotation when moused over

    Thanks

  2. #2
    Firmly Fastened to the Milk Sac of Misanthropy
    Join Date
    Aug 2000
    Posts
    463
    In the box MC, add a fourth frame to both layers. Add a keyframe to the Actionscript layer and give it a stop() action.

    Put this on your button:

    on (rollOver) {
    _root.box.gotoAndStop (4);
    }


    if you want to give the user the choice to resume the animation, you could place another button on the stage and give it these actions:

    on (release) {
    _root.box.gotoAndPlay (2);
    }

    Hope this helps...
    Sem
    [Edited by Sem on 06-28-2001 at 03:18 PM]

  3. #3
    .....<<>>>.....
    Join Date
    Apr 2000
    Posts
    120
    Thanks!
    I'll give it a try

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center