Windowsで動くキーマクロ?ソフト。定型のキーストロークやらマウスクリックやらを自動化してくれる。

擬似のキーボード/マウス操作は比較的簡単に自作プログラムで実現可能だが、そんなもんよりもマクロの書式やら何やら実行のための環境が簡潔に便利に仕上がっている専用ソフトを使った方が良い。

link *

sample *

ひたすらクリック *

実用性はともかく、スケルトンとしてメモ

F3::
Loop 100
{
  Send, {LButton}
  Sleep 100
}

デモみたいなの *

ユーザーからの入力が使えるのは便利。

F3::
InputBox, UserInput, Iteration, Please enter an iteration number., , , 
if ErrorLevel <> 0
{
	MsgBox, Canceled
	return
}

MsgBox, 4, , You entered "%UserInput%". OK?
IfMsgBox, No
{
	MsgBox Canceled
	return
}

Loop %UserInput%
{
	Send, Hello{enter}
	Send, World{enter}
	Send, {enter}
	Sleep 100
}
MsgBox Finished
return

変数と四則演算 *

MyVar = 100

Loop 10
{
  Send, Hello{enter}
  Send, World{enter}
  Send, %MyVar%
  Send, {enter}
  MyVar += 1
  Sleep 100
}

Last-modified: Fri, 25 Aug 2006 11:37:17 JST