Skip to content

Instantly share code, notes, and snippets.

@nishimotz
Created April 8, 2014 02:38
Show Gist options
  • Save nishimotz/10084600 to your computer and use it in GitHub Desktop.
Save nishimotz/10084600 to your computer and use it in GitHub Desktop.
NVDA グローバルプラグイン ナビゲーター位置にマウスを移動して左クリック
# coding: UTF-8
import globalPluginHandler
import globalCommands
class GlobalPlugin(globalPluginHandler.GlobalPlugin):
def script_moveMouseAndLeftClick(self, gesture):
globalCommands.commands.script_moveMouseToNavigatorObject(gesture)
globalCommands.commands.script_leftMouseClick(gesture)
script_moveMouseAndLeftClick.__doc__=u"ナビゲーター位置にマウスを移動して左クリック"
script_moveMouseAndLeftClick.category=globalCommands.SCRCAT_MOUSE
__gestures={
"kb:NVDA+shift+numpadDivide": "moveMouseAndLeftClick",
"kb(laptop):NVDA+shift+[": "moveMouseAndLeftClick",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment