hello!

need to add subtitles to an flv... spent hours searching the internets to no avail... has anyone had any experience doing this?
My understanding is that i can read from an xml file, something like this:

Code:
<cuepoints>
 <cuepoint>
  <cuename>c_pt_0</cuename>
  <cuetime>1</cuetime>
  <subtitle>This is text for the 1st cuepoint</subtitle>
 </cuepoint>
 <cuepoint>
  <cuename>c_pt_1</cuename>
  <cuetime>3.5</cuetime>
  <subtitle>This is text for the 2nd cuepoint.</subtitle>
 </cuepoint>
</cuepoints>
and then add a listener in flash, maybe something like this:

Code:
myMovie.addEventListener("cuePoint", MyCuePointListener);
but unsure how to link it to the xml... or if it will even work... or if its even possible... and has to be done in AS2...

thanksssss.