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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding Sound to MovieClip onMouseUp??

Status
Not open for further replies.

DGTLguy

Technical User
Jul 23, 2003
125
US
Adding Sound to a Movie Clip onMouseUp ???? Also how do I get a movie clip to play only certain frames (1 - 60) during RollOver and then the rest (61-80) onMouseUp??
 
a stop() action in frames 1 60 and 80

myclip.onRollover = function(){
this.gotoAndPlay(2);
}
myclip.onMouseUp = function(){
this.gotoAndPlay(61);
}

that answers the question but i doubt it solves your problem

if so stick down more details
 
actually that works relatively well... thank you.... the only issue is that i want the clip to dissappear from the stage after playing onMouseUp but it seems to reappear
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top