1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Doc/sphinx/scriptref/sound.rst
2011-05-29 12:57:59 +02:00

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.