Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

タグ

autohotkeyに関するrawwellのブックマーク (3)

  • The Best Time-Saving AutoHotkey Tricks You Should Be Using

    It's no secret that we're huge fans of the simple but powerful AutoHotkey scripting language, and we use it religiously to automate Windows tasks and save time. Here's a handful of useful scripts and tricks to help you become an AutoHotkey expert. Today's lesson assumes that you're already somewhat familiar with AutoHotkey scripting and automation. If you're new to the world of AutoHotkey, be sure

    The Best Time-Saving AutoHotkey Tricks You Should Be Using
  • Alphabetical Command and Function Index | AutoHotkey v1

    Click on a command or function name for details. Entries in large font are the most commonly used. Go to entries starting with: E,   I,   M,   S,   W,   # Name Description

  • 使用例

    ここでは、AutoHotkeyで実現できる機能の一例を紹介する。 なお、例の中で自動操作などの対象となっているプログラムは、特に記述がない場合架空の物である。 キー割り当て変更 リマップ機能を利用すれば、特定のキー操作に別のキーを割り当てることが出来る。 おおよそ全てのキーとマウスボタン、ジョイスティックのボタンの割り当てが可能である。 #h::left ;Win+Hに←キーを割り当て #j::down ;Win+Jに↓キーを割り当て #k::up ;Win+Kに↑キーを割り当て #l::right ;Win+Lに→キーを割り当て 特定ソフトのキーバインド変更 #IfWinActive司令を使えば、特定の種類のウィンドウでのみキー割り当てを有効にすることが出来る。 ウィンドウの判別にはウィンドウタイトルやクラス名を使用できる。ウィンドウのクラス名は、付属のAU3_Spy.exeで調査

    rawwell
    rawwell 2009/04/12
    "ファイルLoopを使用すれば、フォルダ内のファイル全てに対して繰り返し同じ処理を行うことが出来る。 自動操作機能と組み合わせることで、GUIアプリケーションでの定型作業を効率化できる。 処理の途中でファイルの削
  • 1