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
bottom of page