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

From Miranda NG
Jump to navigation Jump to search
(Created page with "Erlaubt es Ihnen mit Sounds zu arbeiten.")
(Created page with "Inkludieren Sie folgendes Modul:")
Line 2: Line 2:
Erlaubt es Ihnen mit Sounds zu arbeiten.
Erlaubt es Ihnen mit Sounds zu arbeiten.


Include module: <code>local sounds = require('m_sounds')</code>
Inkludieren Sie folgendes Modul: <code>local sounds = require('m_sounds')</code>


{{Note|Parameters written in '''''bold italics''''' are obligatory.}}
{{Note|Parameters written in '''''bold italics''''' are obligatory.}}

Revision as of 10:36, 14 April 2018

Other languages:

Erlaubt es Ihnen mit Sounds zu arbeiten.

Inkludieren Sie folgendes Modul: local sounds = require('m_sounds')

<translate> Note</translate>
Parameters written in bold italics are obligatory.


AddSound

Registriert einen Sound.

Parameters
name
Typ: string
Eindeutiger Name.
description
Type: string
Description.
section
Type: string
Section name in Miranda sound settings. By default plugin name (MirLua) is used.
path
Type: string
Path to sound file.
Result
Type: boolean
Returns true if sound was registered successfully, otherwise false.
Example
local hIcon = sounds.AddSound('soundUniqueName', 'My super icon')


PlaySound

Plays sound by its unique name.

Parameters
name
Typ: string
Unique name.
Result
Type: boolean
Returns true if sound was played successfully, otherwise false.
Example
sounds.PlaySound('soundUniqueName')


PlayFile

Plays sound from file.

Parameters
path
Type: string
Path to file.
Result
Type: boolean
Returns true if sound was played successfully, otherwise false.
Example
sounds.PlayFile('c:\\lambada.wav')