via PayPal / credit card
Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Has anyone got an example of how to change the background music via JavaScript? I can't find anything that suggests the API specifically supports this in an elegant way but the manual suggests something crude like this should work, but it doesn't:
function ChangeTrack (input_TrackNumber)
{
var flashvars = {dataFile: "/resources/media/music/playtrack.asp?iTrack=" + input_TrackNumber, showLogo: "false", showRegistration: "false"};
var params = {allowScriptAccess: "sameDomain", allowFullScreen: "true"};
var attributes = {id: "monoslideshow", name: "monoslideshow", bgColor: "000000"};
swfobject.embedSWF("/resources/plug-ins/monoslideshow/monoslideshow2.05/monoslideshow.swf", "idMusicPort", "1", "1", "9", false, flashvars, params, attributes);
}
ChangeTrack (4);
1 to 1 of 1