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

From Miranda NG
Jump to navigation Jump to search
(Created page with "Name der Gruppe in den Miranda-Sound-Einstellunge. Standardmäßig wird der Name des Plugins ($default_name) verwendet.")
(Created page with "Pfad zur Sounddatei.")
Line 24: Line 24:
; {{nbsp|5}}''path''
; {{nbsp|5}}''path''
:: {{Ls|MirLua/Modules/type}}: '''string'''
:: {{Ls|MirLua/Modules/type}}: '''string'''
:: Path to sound file.
:: Pfad zur Sounddatei.


==== {{Ls|MirLua/Modules/result}} ====
==== {{Ls|MirLua/Modules/result}} ====

Revision as of 18:38, 15 April 2018

Other languages:

Erlaubt es Ihnen mit Sounds zu arbeiten.

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

Funktionen

AddSound

Registriert einen Sound

Parameter

     name (Translations:L10n:MirLua/Modules/obligatory param/en)
Typ:: string
Eindeutiger Name.
     description (Translations:L10n:MirLua/Modules/obligatory param/en)
Typ:: string
Beschreibung.
     section
Typ:: string
Name der Gruppe in den Miranda-Sound-Einstellunge. Standardmäßig wird der Name des Plugins (MirLua) verwendet.
     path
Typ:: string
Pfad zur Sounddatei.

Ergebnis

     Typ:: boolean

     Returns true if sound was registered successfully, otherwise false.

Beispiel

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

PlaySound

Plays sound by its unique name.

Parameter

     name (Translations:L10n:MirLua/Modules/obligatory param/en)
Typ:: string
Unique name.

Ergebnis

     Typ:: boolean

     Returns true if sound was played successfully, otherwise false.

Beispiel

sounds.PlaySound('soundUniqueName')

PlayFile

Plays sound from file.

Parameter

     path (Translations:L10n:MirLua/Modules/obligatory param/en)
Typ:: string
Path to file.

Ergebnis

     Typ:: boolean

     Returns true if sound was played successfully, otherwise false.

Beispiel

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