AS3Query Hover Function


/ Published in: ActionScript 3
Save to your folder(s)

as3query written by nitoyon. http://tech.nitoyon.com/blog/2008/01/as3query_alpha.html

Package download: http://bit.ly/as3query


Copy this code and paste it in your HTML
  1. //import as3query.*;
  2.  
  3. $(myMovieClip).hover(function(){
  4. //do stuff on mouse over
  5. trace('Mouse Is Over!');
  6. },
  7. function(){
  8. //do stuff on mouse out
  9. trace('Mouse Is Out!');
  10. }
  11. );

URL: http://bit.ly/as3query

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.