ErrEcho(string)

grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » ErrEcho(string) Version 2.0

説明

ErrEcho 関数は、System Monitor に赤色のエラーメッセージを出力します。

引数

  • string:
    System Monitor に出力する文字列。

戻り値

この関数は何も返しません。

System Monitor に "This is a red error message!" というエラーメッセージを出力します。

Lua
return function()
-- Prints an error message in the system monitor in red text.
ErrEcho("This is an error message!")
end