diff --git a/doc/index.html b/doc/index.html index cc393b5e..1d23603c 100755 --- a/doc/index.html +++ b/doc/index.html @@ -853,7 +853,7 @@

soundManager Global Object

object:SMSound createSound(object:options)
-
Creates a sound object, supporting an arbitrary number of optional arguments. Returns a SMSound object instance. A url parameter is recommended, but not required.
+
Creates a sound object, supporting an arbitrary number of optional arguments. Returns a SMSound object instance. At minimum, a url parameter is required.
Minimal example:
var someSound = soundManager.createSound({ 
@@ -863,9 +863,8 @@ 

soundManager Global Object

With optional parameters:
var mySoundObject = soundManager.createSound({
- // optional, for getSoundById() look-ups and convenience methods. If omitted, an id will be generated.
+ // optional id, for getSoundById() look-ups etc. If omitted, an id will be generated.
  id: 'mySound',
- // a url is recommended, but not required.
  url: '/audio/mysoundfile.mp3',
  // optional sound parameters here, see Sound Properties for full list
  volume: 50,