top of page

Beginner

6

Add item to list

RANK

AZSTOKe_sample_itemlist

def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")


count = 5

list = [None]*count


for i in range(-5,5):

    list[i] = i

    Msg(list[i])

def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")


  • A function that outputs the input value to the Reaper console


count = 5


  • Enter the integer 5 in the count variable


list = [None]*count


  • Prepare a frame for the count in the list array


for i in range(-5,5):

    list[i] = i

    Msg(list[i])


  • Show maximum frame

  • The maximum range is -5 to 0 to 5.

  • Setting it to 0 to 6 will result in an error.

APIの利用にはBRONZEに

加入し専用APIを

ダウンロード

する必要があります。

No preparation required


- Script Code -
- Script Image -
- Warm Up -
- Script Detail -
- API -

PYTHON

​ReaScript File Download 👇

​※実行するには専用APIが必要です

- Script Image -
bottom of page