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)
(Updating to match new version of source page)
Line 10: Line 10:


==== {{Ls|MirLua/Modules/parameters}} ====
==== {{Ls|MirLua/Modules/parameters}} ====
; {{nbsp|5}}''name'' {{Nobold|({{Ls|MirLua/Modules/obligatory_param}})}}
; {{nbsp|5}}''name'' {{Nobold|({{Ls|MirLua/Modules/required_param}})}}
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: Unique name.
:: Unique name.


; {{nbsp|5}}''description'' {{Nobold|({{Ls|MirLua/Modules/obligatory_param}})}}
; {{nbsp|5}}''description'' {{Nobold|({{Ls|MirLua/Modules/required_param}})}}
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: Description.
:: Description.
Line 39: Line 39:


==== {{Ls|MirLua/Modules/parameters}} ====
==== {{Ls|MirLua/Modules/parameters}} ====
; {{nbsp|5}}''name'' {{Nobold|({{Ls|MirLua/Modules/obligatory_param}})}}
; {{nbsp|5}}''name'' {{Nobold|({{Ls|MirLua/Modules/required_param}})}}
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: Unique name.
:: Unique name.
Line 56: Line 56:


==== {{Ls|MirLua/Modules/parameters}} ====
==== {{Ls|MirLua/Modules/parameters}} ====
; {{nbsp|5}}''path'' {{Nobold|({{Ls|MirLua/Modules/obligatory_param}})}}
; {{nbsp|5}}''path'' {{Nobold|({{Ls|MirLua/Modules/required_param}})}}
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: {{Ls|MirLua/Modules/type}}: <code>string</code>
:: Path to file.
:: Path to file.

Revision as of 19:17, 17 April 2018

Other languages:

Pozwala na pracę z dźwiękami.

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

Functions

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')