I tried to use the example provided on the Soundcloud blog page to lower the volume.
I just resized iframeboth src=to my playlist and set the volume to 10 so that I can notice the difference if that worked. So far I have not observed any changes, the volume is still 100%.
I tried this with and without posting the following in the header of my template. It does not matter.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
Here is the code that I configured from the Soundcloud example:
<iframe id="sc-widget" width="350" height="332" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F1417174&auto_play=true&show_artwork=false&color=37415f"></iframe>
<script src="http://w.soundcloud.com/player/api.js" type="text/javascript"></script>
<script type="text/javascript">
(function(){
var widgetIframe = document.getElementById('sc-widget'),
widget = SC.Widget(widgetIframe);
widget.bind(SC.Widget.Events.READY, function() {
widget.bind(SC.Widget.Events.PLAY, function() {
widget.getCurrentSound(function(currentSound) {
console.log('sound ' + currentSound.get('') + 'began to play');
});
});
widget.getVolume(function(volume) {
console.log('current volume value is ' + volume);
});
widget.setVolume(10);
});
}());
</script>
This code is available on the Joomla website.
Can someone help me understand what I am missing to adjust the volume?
Is this a jQuery conflict? If so, are there any thoughts on how to solve this?