top of page
- API -
retval, input = reaper.AZ_ShowMessageBox_Ex(messageStr,windowTitleStr,windowType)
- API Detail-
▼Input value
messageStr : Message to be displayed
windowTitleStr : Window title
windowType : Window type
▼Output value
retval: Processing success or failure (true: successful completion, false if "cancel")
input : ID of the pressed button
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
retval, input = reaper.AZ_ShowMessageBox_Ex("Are you ready?","Test Message",1)
Msg(retval)
UI
AZ_ShowMessageBox_Ex
Supported versions:
1.0.3
onwards
Displaying the Message Window
bottom of page