[Flashcoders] onSoundComplete

2006-01-12 Thread Lance Massey
onSoundComplete does not seem to be firing. I've noticed others have  
had the same issue. Has anyone come up w/ a solution?


Thanks,

L



GorillaPop - Connecting People Through Music
http://www.gorillapop.com/

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] onSoundComplete

2006-01-12 Thread Ramon Tayag
It works just fine with me.  Before I start, I make sure I fill up the
TLEN of all the songs.  I use TLEN for another reason but that's the
only thing I can think of that I do to all my files.

It might work.

Goodluck

On 1/13/06, Lance Massey <[EMAIL PROTECTED]> wrote:
> onSoundComplete does not seem to be firing. I've noticed others have
> had the same issue. Has anyone come up w/ a solution?
>
> Thanks,
>
> L
>
>
> 
> GorillaPop - Connecting People Through Music
> http://www.gorillapop.com/
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>


--
Ramon Miguel M. Tayag
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] onSoundComplete

2006-01-12 Thread Lance Massey
I have a spider which streams files from all over, so I don't have  
the option of modifying the id3... :(


My dodgy work around:

var pos_timer = setInterval(checkPlayTime, 1000, theMP3);
function checkPlayTime(s1:Sound){
curPos = s1.duration-s1.position;
if (curPos<200) {
clearInterval(pos_timer);
nextTrack();// function to get and play next track in 
the playlist...
}
};

Clumsy, but it works (http://www.gorillapop.com/gorilla/xspf/ 
xspf.html is a demo)


L

GorillaPop - Connecting People Through Music
http://www.gorillapop.com/

On Jan 12, 2006, at 8:32 PM, Ramon Tayag wrote:


It works just fine with me.  Before I start, I make sure I fill up the
TLEN of all the songs.  I use TLEN for another reason but that's the
only thing I can think of that I do to all my files.

It might work.

Goodluck

On 1/13/06, Lance Massey <[EMAIL PROTECTED]> wrote:

onSoundComplete does not seem to be firing. I've noticed others have
had the same issue. Has anyone come up w/ a solution?

Thanks,

L



GorillaPop - Connecting People Through Music
http://www.gorillapop.com/

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




--
Ramon Miguel M. Tayag
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders