Sunday, October 19, 2008
CFP: Feminisms and Rhetorics
Feminisms and Rhetorics ought to be particularly splendid when hosted by the fine folks at Michigan State University in October 2009: cfp here.
Thursday, October 9, 2008
starting to add interactivity to Flash
A basic script for moving the playback head in the timeline:
bird01.addEventListener(MouseEvent.MOUSE_OVER, myClickReaction01);
function myClickReaction01(e:MouseEvent):void {
bird01.gotoAndPlay(8);
}
............................
Mouse events you can track: CLICK, DOUBLE_CLICK, MOUSE_DOWN, MOUSE_LEAVE, MOUSE_MOVE, MOUSE_OUT, MOUSE_OVER, MOUSE_UP, MOUSE_WHEEL
bird01.addEventListener(MouseEvent.MOUSE_OVER, myClickReaction01);
function myClickReaction01(e:MouseEvent):void {
bird01.gotoAndPlay(8);
}
............................
Mouse events you can track: CLICK, DOUBLE_CLICK, MOUSE_DOWN, MOUSE_LEAVE, MOUSE_MOVE, MOUSE_OUT, MOUSE_OVER, MOUSE_UP, MOUSE_WHEEL
Subscribe to:
Posts (Atom)