「こうすれば便利!!」や「Wikiに付け加えたいが、編集場所がわからない」など単発的な記事があれば、このページに書き加えてください。(見栄えは気にしなくても結構です。)
無印と.netのアクション対照表
- 無印視点
- 無印はとにかくWindowのハンドルとマウスの座標を取れないとやれることが非常に限られる
- .net はluaスクリプトからの後継のスクリプトと、ステップに分かれた。
- .netはアクションコマンドの数が300くらいある
| キーボード操作 | ステップ | スクリプト |
| acSendKeys | Send Keys | sp.SendAltUp |
| acSendKeyDown | Send Virtual Key | sp.SendAltUp |
| acSendKeyUp | Send Virtual Key | sp.SendAltUp |
| acSendWinDown | Send Win Up | sp.SendAltUp |
| acSendWinUp | Send Win Down | sp.SendAltUp |
| acSendControlDown | Send Control Down | sp.SendAltUp |
| acSendControlUp | Send Control Up | sp.SendAltUp |
| acSendAltDown | Send Alt Down | sp.SendAltUp |
| acSendAltUp | Send Alt up | sp.SendAltUp |
| acSendShiftDown | Send Shift Down | sp.SendAltUp |
| acSendShiftUp | Send Shift Up | sp.SendAltUp |
| マウス操作 | ステップ | スクリプト |
| acGetMouseLocationX | Get Current Mouse Point | |
| acGetMouseLocationY | Get Current Mouse Point | |
| acMouseMove | Mouse Move | |
| acMouseClick | Mouse Click | |
| acGetMouseCursorType | Get Current Mouse Cursor | |
| acAutoHideMouseCursor | × | |
| acHideMouseCursor | × | |
| acShowMouseCursor | × |
| クリップボード操作 | ステップ | スクリプト |
| acGetClipboardText | Get Clipboard Text | clip.GetText |
| acSetClipboardText | Set Clipboard Text | clip.SetText |
(無印)acGetClipboardText()
戻値: 文字列
解説: クリップボードにある現在のテキストを返します
StrokesPlus.net clip.GetText;
| オーディオ操作 | ステップ | スクリプト |
| acSetVolume | Set Playback Volume | sp.SetPlaybackVolume; |
| acGetVolume | Get Playback Volume | sp.GetPlaybackVolume |
| acToggleMute | Toggle Playback Mute | sp.TogglePlaybackMute |
| acGetMute | △ | △ |
| acSetMute | △ | △ |
| acPlaySound | Play Sound | sp.PlaySound |
ユーティリティ
一部コマンドは設定>>オプションに流れた。
| ユーティリティ | ステップ | スクリプト |
| acConsumePhysicalInput | ||
| acDelay | Delay | Sleep |
| acGetSystemMetrics | 未調査 | 未 |
| acGetPixelRByPoint | 未 | 未 |
| acGetPixelGByPoint | 未 | 未 |
| acGetPixelBByPoint | 未 | 未 |
| acMessageBox | 未 | 未 |
| acDisplayBalloonTip | 未 | 未 |
| acDisplayText | 未 | 未 |
| acKillDisplayText | 未 | 未 |
| acGetProcessIDFromPattern | 未 | 未 |
| acGetWindowFromProcessID | 未 | 未 |
| acIsImmersiveProcess | 未 | 未 |
| acGetFileVersion | 未 | 未 |
| acGetFileProductVersion | 未 | 未 |
| acInputBox | Input Box | 未 |
| acRunProgram | Sun Program | 未 |
| acShellExecute | Run | 未 |
| acLockWindows | 未 | 未 |
| acGetNumber | 未 | 未 |
| acSetNumber | 未 | 未 |
acRunProgram(fullpath, parameters, seconds, style)
(ステップ) Run Program (fileName, arguments, verb, windowsStyle, useShellExtention, noWindow, waitForeExit)
