TextInput([string[, string[, integer[, integer]]]])

説明

Lua 関数の TextInput は、テキスト入力ポップアップを開き、入力された内容を文字列として返します。これは、ユーザ・インターフェース機能の一部です。

引数

戻り値

テキスト入力ポップアップを表示し、入力された値を Command Line History に出力するには、以下のようなコードでプラグインを作成します。

local function main()
    local input = TextInput(" This is the title","Please provide your input here")
    Printf("You entered this message: %s",tostring(input))
end

return main