Plugin:MirLua/Module/m sounds/pl

From Miranda NG
Jump to navigation Jump to search
This page is a translated version of the page Plugin:MirLua/Module/m sounds and the translation is 14% complete.
Other languages:

Pozwala na pracę z dźwiękami.

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

Funkcje

AddSound

Registers a sound.

Parametry

Nazwa parametru Wymagany Typ Opis
name Tak string Unique name.
description Tak string Description.
section Nie string Section name in Miranda sound settings. By default plugin name (MirLua) is used.
path Nie 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

Nazwa parametru Wymagany Typ Opis
name Tak 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

Nazwa parametru Wymagany Typ Opis
path Tak string Path to file.

Rezultat

     Typ: boolean

     Returns true if sound was played successfully, otherwise false.

Przykład

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