MirLua

From Miranda NG
Revision as of 18:08, 21 August 2017 by Dart Raiden (talk | contribs)

Plugin:MirLua/de
Jump to navigation Jump to search

MirLua
MirLua
Dateiname MirLua.dll
Autor Miranda NG team
Download-Links
Stabile Version: 32-bit, 64-bit
Entwicklungsversion: 32-bit, 64-bit

Erweitert die Funktionalität von Miranda NG um Lua-Skripte.

Beispiele

{{#subpages:Content:MirLua/Examples}}

Funktionen

Funktion Beschreibung Erweiterte Beschreibung Einstellungen Beispiel
CreateHookableEvent CreateHookableEvent Beschreibung. CreateHookableEvent Einstellungen.
local hEvent = m.CreateHookableEvent('MyEvent')
HookEvent HookEvent Beschreibung. HookEvent erweiterte Beschreibung. HookEvent Einstellungen.
local hHook = m.HookEvent('MyEvent', function(w, l)
  print('MyEvent is raised!')
end)
UnhookEvent UnhookEvent Beschreibung. UnhookEvent Einstellungen.
m.UnhookEvent(hHook)
NotifyEventHooks NotifyEventHooks Beschreibung. NotifyEventHooks Einstellungen.
m.NotifyEventHooks(hEvent)

Links