Flash Help: Movie clips
Flash Help: Movie clips
- Started
- Last post
- 2 Responses
- progressive
Does anyone know how to track a movie clip as a button, however, when you mouseover, the cursor doesn't change to the "hand".
- _b_0
myMovieClip.useHandCursor = false;
- unfittoprint0
like _b_ said (but within an event):
movieclip.onRollOver = function(){
this.useHandCursor = false;
}