jonobot_ + as3   13

ilike2Flash: Custom cursor in AS3
stage.addEventListener(Event.ENTER_FRAME, moveCursor);

function moveCursor(event:Event) {
customcursor_mc.x=mouseX;
customcursor_mc.y=mouseY;
}
as3  custom  mouse  pointer  cursor  actionscript  flash  tutorials 
may 2010 by jonobot_
AS3: Basic Timer example - ActionScript 3 - Snipplr
#
var timer:Timer = new Timer(1000, 2);
#
timer.addEventListener(TimerEvent.TIMER, blah);
#
timer.start();
#

#
function blah(e:TimerEvent):void{
#
trace("Times Fired: " + e.currentTarget.currentCount);
#
trace("Time Delayed: " + e.currentTarget.delay);
#
}
as3  flash  timer  actionscript  webdev  howto 
january 2010 by jonobot_
Peter deHaan: Using the Timer class in ActionScript 3.0
var myTimer:Timer = new Timer(1000, 1); // 1 second myTimer.addEventListener(TimerEvent.TIMER, runOnce); myTimer.start(); function runOnce(event:TimerEvent):void { trace("runOnce() called @ " + getTimer() + " ms"); }
actionscript  flash  as3  programming  timer  development 
may 2008 by jonobot_
Flash source code » Actionscript 3, Full screen sites using “stageListener”
stage.align = StageAlign.TOP_LEFT; //do not let any of the stage scale stage.scaleMode = StageScaleMode.NO_SCALE;
actionscript  as3  fullscreen  resize 
march 2008 by jonobot_

Copy this bookmark:



description:


tags: