
Код AS1/AS2:
var scrollTimeOut
function action( DIR ){
trace("\taction:"+DIR)
}
function repeater ( dir ){
trace("■ repeater:"+dir)
clearTimeout( scrollTimeOut )
controlClip.onEnterFrame = function(){
action( dir )
}
}
controlClip.btnUp.PAD.onPress = function (){
clearTimeout( scrollTimeOut )
scrollTimeOut = setTimeout( repeater, 300, -1 )
action(-1)
}
controlClip.btnDn.PAD.onPress = function () : Void{
clearTimeout( scrollTimeOut )
scrollTimeOut = setTimeout( repeater, 300, 1 )
action(1)
}
controlClip.btnUp.PAD.onRelease = controlClip.btnDn.PAD.onRelease = function():Void{
clearTimeout( scrollTimeOut )
delete controlClip.onEnterFrame;
}