マクロ記載例
マクロのそれぞれの記載例です。
ただし、Sakuraのバージョンにより動作が異なることがあります。
詳しい言語仕様についてはそれぞれのマクロを提供している側のヘルプをご覧ください。
■例1: キーマクロ
S_InsText(
'<br />' );
InsText(
"<br />" );
ExecCommand(
'echo $f($x,$y)', 3);
ExecCommand(
'dir /b', 3);
■例2: WSH(JScript)
Editor.InsText(
'<br />');
Editor.InsText(
"<br />");
InsText(
"<br />");
var str = Editor.
ExpandParameter(
"$f($x,$y)\r\n");
Editor.InsText(str);
Editor.ExecCommand(
'dir /b', 3);
■例3: WSH(VBScript)
Dim str
Editor.InsText "<br />"
InsText "<br />"
str = Editor.ExpandParameter("$f:($x,$y)" & vbCrLf)
Editor.InsText str
Editor.ExecCommand "dir /b", 3
■例4: PPAマクロ
S_InsText( '<br />' );
S_ExecCommand('dir /b', 3);