For a website I am implementing the Soundcloud sdk and I am using the SC.stream object to retrieve some tracks. Everything is fine but sometimes the IE7 does not get a soundmanager object.
var track = null;
SC.stream("/tracks/" + songToPlay, {}, function(song){
track = song;
});
One in five times the track variable is empty and therefore I cannot play any sound. Are there known problems with the IE7 or might I have some mistakes in my code?
Thank you for answering.
trackoutside the scope of the callback and therefore may be accessing it before the callback has been called (in which case it'll be null). Can you post more code? – Paul Osman Jul 9 '12 at 15:29