
soundEffects [read-write]
ThumbGrid Version: ThumbGrid 1 and 2
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Property; an Array containing the Linkage Classes (AS3) of the sound clips in the FLA Library to be used for interface sound effects.
soundEffects[0] designates a sound to use when a thumbnail is clicked.
soundEffects[1] designates a sound to use when a thumbnail is rolled-over with the mouse.
soundEffects[2] designates a sound to use when the nextThumbGroup() or previousThumbGroup() methods are called.
The following example sets the sound clip with a linkage variable of "clickSound" to use for thumbnail clicks:
my_ssp.soundEffects[0] = "clickSound";
The following example sets all three sound effects:
my_ssp.soundEffects=["clickSound","rollSound","slideSound"];