Created
April 8, 2014 02:38
-
-
Save nishimotz/10084600 to your computer and use it in GitHub Desktop.
NVDA グローバルプラグイン ナビゲーター位置にマウスを移動して左クリック
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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