mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 20:05:03 -05:00
39 lines
529 B
ReStructuredText
39 lines
529 B
ReStructuredText
|
|
.. _scriptref_web:
|
|
|
|
Multimedia Functions
|
|
====================
|
|
|
|
|
|
Sound Functions
|
|
--------------
|
|
|
|
PlaySound
|
|
~~~~~~~~~
|
|
|
|
.. code-block:: pascal
|
|
|
|
procedure PlaySound(Sound : string);
|
|
|
|
PlaySound plays the sound file with the path *Sound*.
|
|
|
|
Supported formats: *.wav*. (Possibly others, if someone has time to figures
|
|
this out please let us know)
|
|
|
|
Example:
|
|
|
|
.. code-block:: pascal
|
|
|
|
PlaySound('C:\roar.wav');
|
|
|
|
|
|
StopSound
|
|
~~~~~~~~~
|
|
|
|
|
|
.. code-block:: pascal
|
|
|
|
procedure StopSound;
|
|
|
|
StopSound stops all currently playing sounds.
|