RE: [Flashcoders] Trying my question again.. FLV/MP3 and components

2006-06-27 Thread Merrill, Jason
Sounds good to me. You can pop out the extension name of the string using theString.split(.) For example: theString = myfile.mp3 tempArr = theString.split(.); extension = tempArr[1]; trace(extension) theString = myfile.flv tempArr = theString.split(.); extension = tempArr[1]; trace(extension)

RE: [Flashcoders] Trying my question again.. FLV/MP3 and components

2006-06-27 Thread Merrill, Jason
In regards to your second question, you could also just hide, show, delete, show, attach, whatever the appropriate media player instead of jumping frames too - either way works. Jason Merrill Bank of America Learning Organization Effectiveness - Technology Solutions -Original