top of page
- Script Code -

dofile(reaper.AZ_GetLuaInitPath())


list = {}

count = 5


for i = 1,count do

    list[i] = i

    Msg(list[i])

end

- Warm Up -

準備の必要はありません

- Script Detail -

dofile(reaper.AZ_GetLuaInitPath())


  • Lua版RIGDOCKSの初期設定読み込み


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実行ごとにコンソールに出力

- API LINK -

Beginner

AZ_list

指定数を配列に登録

01_BRONZE_ss_edited.png
01_SILVER_edited_edited.png
03_GOLD_edited_edited.png
bottom of page