Question:

Why aren't my Flash dragging buttons working?

by  |  earlier

0 LIKES UnLike

Here is the script I'm using:

on (press) {

startDrag("[Name of button inserted here]")

gotoAndPlay([the frame I want it to go to]);

}

on (release) {

stopDrag()

}

I've done this for all 3 buttons I have, but only one is working. I'm sure I've changed the names... THANKS.

 Tags:

   Report

2 ANSWERS


  1. Make sure you are clicking the button before putting the code in action script.

    Click first button and open the script panel and write:

    on (press) {

    startDrag("Button1")

    gotoAndPlay(2)

    }

    on (release) {

    stopDrag()

    }

    Then exit the action script panel, click on the second button and then open the scripting panel again and paste in:

    on (press) {

    startDrag("Button2")

    gotoAndPlay(2)

    }

    on (release) {

    stopDrag()

    }

    Do the same steps for the third button, but make sure to put "Button3" for the name.

    Animate Logo Team

    http://www.animatelogo.com


  2. GO to tech support guy.com,its free and can answer all your computer questions.

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.
Unanswered Questions