SCTextView.keyUpAction seems to fire twice - I never noticed this before: ( var win, txt; win = SCWindow.new.front; txt = SCTextView(win,win.bounds.moveTo(0,0)) .keyDownAction_({ "down".postln }) .keyUpAction_({ "up".postln }) .focus(true); ) - Scott |