blob: 4d48ace8a37f3137624ee8bd4c8ee478ffc6bb0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- include m_popup module
local popup = require('m_popup')
--- include m_clist module
local clist = require('m_clist')
m.CreateServiceFunction('MirLua/ShowPopup', function()
local popupData =
{
Title = 'Title',
Text = 'Popup content',
hContact = 0,
Flags = 1
}
popup.AddPopup(popupData)
end)
m.OnModulesLoaded(function()
clist.AddMainMenuItem({ Name = "Show lua popup", Service = 'MirLua/ShowPopup' })
end)
|