top of page

6

Beginner

AZ_list

指定数を配列に登録

RANK

dofile(reaper.AZ_GetLuaInitPath())


list = {}

count = 5


for i = 1,count do

    list[i] = i

    Msg(list[i])

end

dofile(reaper.AZ_GetLuaInitPath())


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 -

LUA

​ReaScript File Download 👇

* A dedicated API is required to run this

- Script Image -
bottom of page