@@ -844,10 +844,6 @@ this.createjs = this.createjs || {};
844
844
}
845
845
var p = createjs . extend ( Loader , createjs . AbstractLoader ) ;
846
846
847
- // TODO: deprecated
848
- // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
849
-
850
-
851
847
// Static Properties
852
848
var s = Loader ;
853
849
/**
@@ -979,10 +975,6 @@ this.createjs = this.createjs || {};
979
975
} ;
980
976
var p = createjs . extend ( FlashAudioSoundInstance , createjs . AbstractSoundInstance ) ;
981
977
982
- // TODO: deprecated
983
- // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
984
-
985
-
986
978
// Static Propeties
987
979
var s = FlashAudioSoundInstance ;
988
980
/**
@@ -1060,13 +1052,13 @@ this.createjs = this.createjs || {};
1060
1052
p . _beginPlaying = function ( playProps ) {
1061
1053
if ( s . _flash == null ) { return false ; }
1062
1054
1063
- this . setPosition ( playProps . offset ) ;
1064
- this . setLoop ( playProps . loop ) ;
1065
- this . setVolume ( playProps . volume ) ;
1066
- this . setPan ( playProps . pan ) ;
1055
+ this . position = playProps . offset ;
1056
+ this . loop = playProps . loop ;
1057
+ this . volume = playProps . volume ;
1058
+ this . pan = playProps . pan ;
1067
1059
if ( playProps . startTime != null ) {
1068
- this . setStartTime ( playProps . startTime ) ;
1069
- this . setDuration ( playProps . duration ) ;
1060
+ this . startTime = playProps . startTime ;
1061
+ this . duration = playProps . duration ;
1070
1062
}
1071
1063
this . _paused = false ;
1072
1064
@@ -1287,10 +1279,6 @@ this.createjs = this.createjs || {};
1287
1279
var p = createjs . extend ( FlashAudioPlugin , createjs . AbstractPlugin ) ;
1288
1280
var s = FlashAudioPlugin ;
1289
1281
1290
- // TODO: deprecated
1291
- // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
1292
-
1293
-
1294
1282
// Static properties
1295
1283
/**
1296
1284
* Event constant for the "registerFlashID" event for cleaner code.
@@ -1314,7 +1302,7 @@ this.createjs = this.createjs || {};
1314
1302
1315
1303
/**
1316
1304
* The capabilities of the plugin. This is generated via the {{#crossLink "WebAudioPlugin/_generateCapabilities"}}{{/crossLink}}
1317
- * method. Please see the Sound {{#crossLink "Sound/getCapabilities "}}{{/crossLink}} method for a list of available
1305
+ * method. Please see the Sound {{#crossLink "Sound/capabilities:property "}}{{/crossLink}} method for a list of available
1318
1306
* capabilities.
1319
1307
* @property _capabilities
1320
1308
* @type {Object }
@@ -1351,7 +1339,7 @@ this.createjs = this.createjs || {};
1351
1339
} ;
1352
1340
1353
1341
/**
1354
- * Determine the capabilities of the plugin. Used internally. Please see the Sound API {{#crossLink "Sound/getCapabilities "}}{{/crossLink}}
1342
+ * Determine the capabilities of the plugin. Used internally. Please see the Sound API {{#crossLink "Sound/capabilities:property "}}{{/crossLink}}
1355
1343
* method for an overview of plugin capabilities.
1356
1344
* @method _generateCapabilities
1357
1345
* @static
@@ -1599,6 +1587,6 @@ this.createjs = this.createjs || {};
1599
1587
* @type String
1600
1588
* @static
1601
1589
**/
1602
- s . buildDate = /*=date*/ "Mon, 14 Sep 2015 19:11:47 GMT" ; // injected by build process
1590
+ s . buildDate = /*=date*/ "Thu, 08 Jun 2017 21:05:43 GMT" ; // injected by build process
1603
1591
1604
1592
} ) ( ) ;
0 commit comments