Plugin:MirLua/Module/m sounds/pl: Difference between revisions

From Miranda NG
Jump to navigation Jump to search
(Updating to match new version of source page)
(Created page with "== Funkcje ==")
Line 5: Line 5:


__TOC__
__TOC__
== Functions ==
== Funkcje ==
=== AddSound ===
=== AddSound ===
Registers a sound.
Registers a sound.

Revision as of 23:26, 21 April 2018

Other languages:

Pozwala na pracę z dźwiękami.

Dołącz moduł:: local sounds = require('m_sounds')

Funkcje

AddSound

Registers a sound.

Parametry

     name (Wymagany)
Typ:: string
Unique name.
     description (Wymagany)
Typ:: string
Description.
     section
Typ:: string
Section name in Miranda sound settings. By default plugin name (MirLua) is used.
     path
Typ:: string
Path to sound file.

Rezultat

     Typ:: boolean

     Returns true if sound was registered successfully, otherwise false.

Przykład

local hIcon = sounds.AddSound('soundUniqueName', 'My super icon')

PlaySound

Plays sound by its unique name.

Parametry

     name (Wymagany)
Typ:: string
Unique name.

Rezultat

     Typ:: boolean

     Returns true if sound was played successfully, otherwise false.

Przykład

sounds.PlaySound('soundUniqueName')

PlayFile

Plays sound from file.

Parametry

     path (Wymagany)
Typ:: string
Path to file.

Rezultat

     Typ:: boolean

     Returns true if sound was played successfully, otherwise false.

Przykład

sounds.PlayFile('c:\\lambada.wav')