top of page
- API -

dofile(reaper.AZ_GetLuaInitPath())


count = 5

for i = 1,count do

Msg(i)

end

- API Detail-

No preparation required

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())


  • Loading the initial settings for the Lua version of RIGDOCKS


count = 5


  • Specify the count as 5


for i = 1,count do


  • Set a loop from 1 to 5 using ForLoop


Msg(i)


  • Print the account ID to the console


end


  • ForLoop processing completed


- SCRIPT -

Beginner

AZ_for_loop

Executes a specified number of loops

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