Return to Snippet

Revision: 37671
at December 15, 2010 03:40 by adamcoulombe


Updated Code
//import as3query.*;

$(myMovieClip).hover(function(){
				//do stuff on mouse over
				trace('Mouse Is Over!');
			},
			function(){
				//do stuff on mouse out
				trace('Mouse Is Out!');
			}
);

Revision: 37670
at December 15, 2010 03:40 by adamcoulombe


Initial Code
//import as3query.*;

$(tst).hover(function(){
				//do stuff on mouse over
				trace('Mouse Is Over!');
			},
			function(){
				//do stuff on mouse out
				trace('Mouse Is Out!');
			}
);

Initial URL
http://bit.ly/as3query

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

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

Initial Title
AS3Query Hover Function

Initial Tags
actionscript

Initial Language
ActionScript 3