top of page
- Script Code -
dofile(reaper.AZ_GetLuaInitPath())
count = 5
for i = 1,count do
Msg(i)
end
- Warm Up -
No preparation required
- Script Detail -
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
- API LINK -
Beginner
AZ_for_loop
Executes a specified number of loops
bottom of page