top of page

Beginner

15

Get the storage position of the specified file in the array

RANK

AZSTOKe_sample_index

def Msg(parm):

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


t = [10,20,30,40,50]

a = t.index(30)

Msg(a)

def Msg(parm):

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


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


t = [10,20,30,40,50]


  • Prepare t array


a = t.index(30)


  • Use index to check where 30 is located


Msg(a)


  • Display the output position using the Msg function

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