Hi,

I've made an animation in the HTML5-canvas. It works perfectly. See: http://www.studio-ief.be/extra/potlood_HTML.html.

Here's my javascript-code in frame 1:

Code:
this.stop();



this.knop.addEventListener("mouseover", fl_Start.bind(this));

function fl_Start() 
{ 
this.play() ; 

}


this.knop.addEventListener("mouseout", fl_Pause.bind(this));

function fl_Pause() 
{ 
this.stop() ; 

}

How can I make the mouse-pointer default?
Here's my javascript-code in the last frame:

Code:
this.gotoAndPlay(2);
How can I make the mouse-pointer default? It has to stay an arrow, even on mouse over. Can someone help me with the Javascript-code?

Thx!!