Lua:Neutrino-API:hint:en

Aus TuxBoxWIKI
Wechseln zu: Navigation, Suche

hint

Creates a simple hint box without title bar with text. On disabled background, only text will be painted.

hint.new{Parameter}


Parameter:

Parameter Typ Description/Beschreibung
text string Text inside hint box
show_background bool enable backkground Default: "true"
en: Parameters with default-values are optional. If not needed, no definition is required. In case of missing parameter, default value is used.

de: Parameter mit Default-Wert sind optional. dh. sie müssen nicht angegeben werden. Falls der Parameter fehlt, wird automatisch dieser Wert angenommen.



Example:

-- shows a small message box without title and buttonbar
-- exit key closes message box
local h = hint.new{ text="Hello World!", show_background="true" }
h:paint();
-- do something ...

-- cleanup, remove message box from screen
h:hide()