Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

rollover button text

Status
Not open for further replies.

dartali

Technical User
May 27, 2001
19
MX
Well guys and girls, slowly but certainly I'm getting there, with a little help of friends :)
This is the actionscript I've been putting in:
on (release, rollOver) {
tellTarget ("_root.text") {
play ();
}
}
on (release, rollOut) {
}
on (release) {
tellTarget ("_root.text") {
stop ();
}
}

The prob is it doesn't stop at the roll out.

Any suggestions?

Cheers,

dartali
 
Looking at how your on roll over statement is constructed, aren't the first } braket and on release statemenets un-necessary? (Tho' I could be wrong!)

=)

PetitPal

on (release, rollOut) {
}
on (release) {

tellTarget ("_root.text") {
stop ();
}
}

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top