top of page
6
Beginner
AZ_list
指定数を配列に登録
RANK
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
list = {}
count = 5
for i = 1,count do
list[i] = i
Msg(list[i])
end
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
Msg コンソール出力関数をセット
list = {}
count = 5
listの配列を用意
count変数に整数5を追加
for i = 1,count do
list[i] = i
Msg(list[i])
end
ForLoopを1から5回ループを実行
listにiのインデックスを追加
Msg関数でLoop実行ごとにコンソールに出力
To use the API, you need to sign up for a plan.
Download the dedicated API
need to do it.
*SILVER is scheduled to be released in May.
準備の必要はありません
- Script Code -
- Script Image -
- Warm Up -
- Script Detail -
- API -
- Script Image -
bottom of page