Action Script - Making Your Buttons Work
You can scrip buttons in one of two ways.
Here the first set of scripts need place directly on button clips. Then all of your actions can be listed between the brackets {}.
on(rollOver) {
}
on(rollOut) {
}
on(release) {
}
This second set are placed on a frame containing a button.
buttonName.onRollOver = function() {
}
buttonName.onRollOut = function() {
}
buttonName.onRelease = function() {
}
|