Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Based on the snippet of code you provided, I'm wondering if you're trying to access track outside 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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.