Similar to my last post about getting data from different locations, this time, instead of trying to load images, i'm trying to load audio clips. It took a little bit of finagling, but I finally have it. Just a quick bit of back story, I am downloading a zip file and unzipping contents into my app storage directory in folders. If I reference the directory, I need to adjust the file.nativePath for that. Enough talk, here's the code:
_file.nativePath = _file.nativePath + _audio;
req = new URLRequest(_file.url);
s = new Sound(req,context);
over and over I tried to just make the URLRequest be the _file.nativePath + _audio and kept getting the most awful Error #2032 Stream Error (which explains nothing and is not helpful). Finally I came across a forum post that explained that the URLRequest needs the _file.url, otherwise it appends this app:/ to my string, which bombs out. So i can adjust the nativepath, and then use the url. ta-da!!!
No comments:
Post a Comment