AutoHotkeyを流行らせるページより~
AutoHotkeyはホットキーへの機能の割り当てなど常駐ソフトの作成に特化したスクリプトエンジンである。
多彩なコマンドが用意されており、GUIを持ったプログラムの作成も可能。
GNU GENERAL PUBLIC LICENSE Version 2の下で配布されるフリーソフトで、C++で作られている。
公式サイト(http://www.autohotkey.com/)にて、インストーラー版とZIPアーカイブ版の2種類が配布されている。
インストーラーを実行すると、スタートメニュー、新規作成メニュー、関連付けに変更が加えられる。
- 自動化 - 所謂マクロ。
- ホットキー - スクリプトを常駐、特定のキーやボタンが押されたときにひとつ、あるいは複数の機能を割り当て。
- Hotstring - 日本語での利用には多少工夫が必要。
- GUI - GUI を設定できる。CUIのソフトのフロントエンドなどはおてのもの。
- リマップ - キーやボタンをリマップできる。 特定のウィンドウやウインドウ毎にリマップすることも可能。
- 実行ファイル - 実行に必要なファイルとともに自作スクリプトを実行ファイルに変換可能。AHKがインストールされていない環境に向けても配布が可能に。
詳しい特徴と機能についての紹介は AutoHotkeyを流行らせるページ → イントロダクション でされています。
スクリプト†
ホットキーへの機能の割り当て以外に、GUIがあり、DllCall*1がかなり強力な事もあり(向き不向きはありますが)大抵の事は出来ると思います。
COM†
COM*2を利用する事も出来ます。
FAQ†
Q.文字化け?ダメ文字?†
A.
- AutoHotkey スレッド part6より~
Q:「~AチЯ㌔荏柿義形港餐汁秦疏蛋伝覗描冒輿倭兪啻嫣彖拜杼歔」を含む文字列がうまく扱えないよ
A:これらの文字の2バイト目が、AHKのエスケープ文字である0x60[`]なため。
対処としてはこれらの文字の"直後"に「`」を記述する(例:「線形`代数」)か、
#EscapeCharでエスケープ文字を別のものに変えるべし。
Q.コンパイルした実行ファイルがアンチウイルスソフトに怒られるんだけど?†
A.Compile_AHK II を試してみて下さい(08年12月14日現在)。"No UPX"オプションがあるので、UPXで圧縮しないでコンパイルしてみて下さい。
もしかしたら改善されるかもしれません。
関連用語:実行ファイル圧縮
参考リンク†
- AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText
- 公式サイト
- AutoHotkeyを流行らせるページ
- 日本に於ける総本山
スクリプト†
- AutoHotkey Script Showcase
- スクリプトサンプル。
- AutoHotkey wiki - Category:Scripts - AutoHotkey , Script Listing - AutoHotkey
- 目当てのスクリプト(の記事)を見つけるのにForumから検索*5して探すのが大変なら、先ずこのページにあるリンクからあたってみましょう。 - 中には古い記事もあるので記事の日付け、内容に注意。
- AutoHotkeyを流行らせるページ → My Scripts
- AutoHotkeyを流行らせるページの管理人さんが作成したスクリプト、ライブラリ各種。
- API Wrappers - AutoHotkey wiki
- WinAPI *6にアクセス出来ます。
- Windows Data Types lookup tool - Autohotkey forums
- WinAPI関連:補助スクリプト
- Crazy Scripting : A handy tool to lookup Win32 Constants - Autohotkey forums
- WinAPI関連:補助スクリプト "W32C_R01.CSV is a listing of 11836 Constants"
- Easy WinAPI - WinAPI Parser, DllCall with single hotkey - Autohotkey forums
- WinAPI関連:補助スクリプト
- StructParser (for C/C++ structs) - Autohotkey forums
- 補助スクリプト: →Known Issues - Autohotkey forums
- Crazy Scripting : WinAPI Listing
- WinAPI関連:補助スクリプト - リストからWinAPI関数を検索、MSDNライブラリの該当ページをブラウザで表示。
- win32help.ahk (Win32 API 用ラッパ作成ヘルパスクリプト)
- DllCall() のラッパ、構造体操作ラッパ、加えて定数定義を作成するためのヘルパスクリプト - Requires: C++ コンパイラ、 Win32 API のヘッダ
- OpenGL DllCalls - Autohotkey forums
- OpenGL*7 in AHK. 関連:Zippos OpenGL - AHK 3D-Engine. - Autohotkey forums(独語)→操作解説(英語)-Keys - Autohotkey forums
- GDI+ standard library 1.26 by tic
- GDI+ *8 :サンプル - [examples+minituts] The GDI+ Examplecodes thread
COM†
- COM Wrappers - AutoHotkey wiki
- いくつかCOMラッパーの提供もされています。
- COM Standard Library - Autohotkey forums
- → 関数ライブラリスクリプト、#Include - AutoHotkeyを流行らせるページ
- Embed an Internet Explorer control in your AHK Gui via COM - Autohotkey forums
- "This is a standard library for IE/WebBrowser controls."
関連:IE and Gui Browser Com Tutorial - Autohotkey forums
- Windows Scripting for Autohotkey - official homepage
- VBScript,JScriptの組み込み - "Embed VBScript or JScript directly in your Autohotkey programs." :
Embedded Windows Scripting (VBScript & JScript) and COM - official thread in the Autohotkey forums
- AutoHotkeyを流行らせるページ → My Scripts → ActiveX
- WSH等で使われるActiveXObjectを扱えるようにする
ダメ文字問題対策†
- AutoHotkey駄目文字微対策版
- 物置 > AutoHotkey
1.0.47.06ベースにされたようです(08年12月25日現在)。
注)文字列処理(含:正規表現)では依然駄目文字等の問題は残ります。
デバッグ あれこれ†
- AutoHotkeyを流行らせるページ → スクリプト → スクリプトのデバッグ
- スクリプトが期待通りに動作しているかを確認するには
- AutoHotkeyを流行らせるページ → リファレンス → OutputDebug
- デバッガ(DebugViewなど)に文字列を出力
- 110.22 Ahk script Debugger 1.1.5b (line-by-line capable)
- "An interactive AHk debugger"
- Debugging - Autohotkey forums
- Debug helper スクリプト など
- Debug() [Func] - Autohotkey forums
if you're working with #Include files
function must be called from itself rather than calling from d.ahk
to show correct info for currently executing function/filename
- debugging using A_LIneNumber - Autohotkey forums
- RunDebugView.ahk - DebugView を利用。
- Gui, Show bug - Autohotkey forums
- Trace.ahk - DebugView を利用。
- DebugBIF - debug built-in functions (was DllCallDebugger) - for AutoHotkey v1.0.48
- appropriate version of LowLevel are required.
Tools†
- DebugView(DebugView for Windows - © Microsoft Corporation.)
- デバッグトレースを表示
- 使い方 - 参考:
- 差をつけるデバッグ術! ~ 知られざるログ出力 - プログラミング徹底解説
- Dependency Walker (depends.exe) Home Page
- 最新版:2.2.6000が入手できる
Dependency Walker 日本語化パッチ+α - G-PROJECT
Dependency Walkerの文字化け対策 - G-PROJECT
[SMS] Dependency Walker for Win32 (Depends.exe) について
- DLL Export Viewer
- システム内のdll/指定したdllの関数をスキャン
- Dll Export Finder
- 指定したディレクトリのdllの関数をスキャン
- ActiveVB - ApiViewer (en)
- WinAPIビューワー
- COMView
- PSDK付属のOleView.Exeの代替として使用できるツール
- MiTeC OLE/COM Object Explorer
- PSDK付属のOleView.Exeの代替として使用できるツール
- SPY for Internet Explorer
- 実行中のInternet Explorerで発生するイベントの監視(WebBrowser control)
mini info†
- AutoHotkey - Feb 25, 2009 Version 1.0.48 is released.
- "It is up to 3 times as fast, especially for numerically-intensive scripts. ..." - AutoHotkey Changes and New Features / v1.0.48 released: Runs up to 3x as fast. Adds while-loop.
- Compile_AHK II(Compile_AHK II - for those who compile! - Autohotkey forums)
- Update of 2008-11-05 以降、"No UPX"オプション(GUI)が付いています。(コンパイラそのものは公式サイトで配布されているものに標準で付いて来ます) - Viruses found in executable after compile , Tutorial: How to compile .AHK files and include your own ico
- SciTE4AutoHotkey v2 stable
- SciTE4AutoHotkey v2 - New SciTE4AHK version in the making , SciTE4AutoHotkey v2 Stable - Released.
- SciTE4AutoHotkey2-ja_1.1.zip
- "SciTE4AutoHotkey v2" メニュー日本語化パック
- AutoHotkey_L (Lexikos' custom build) - "pre-release" DBGp client functions written in AutoHotkey - "Hopefully we will see interactive debugging in SciTE4AutoHotkey in the not-too-distant future."
- 関連:AutoHotkey_L - Debugging Features 、
InteractiveDebugging.avi - 基本的なデバッグの様子を収めたスクリーンキャスト。
- ironahk - Google Code
- クロスプラットホーム向けに開発が進められているAutoHotkeyからのフォーク。
Forum内のスレッド:IronAHK - .NET port of AutoHotkey for Windows, Linux, Mac...
- scite-4-ironahk - Google Code
- IronAHK 仕様の SciTE
- chm版リファレンス - スクリプト投稿スレ > 127
- 『AutoHotkeyを流行らせるページ』のHTML HELP版、 v1.0.47.00 対応。