A Video player is created using "Video" in flash action script 3.0. And played video using net stream. The sample code is:
connection = new NetConnection();
connection.connect(null);
on connection success stream and video crested and played.
stream = new NetStream(connection);
video = new Video();
video.width = stage.stageWidth;
video.height = stage.stageHeight;
video.attachNetStream(stream);
stream.play(videoURL);
Video is playing correctly. I want to display subtitle for the video. I have .srt formeted file for the video, any solution in as3 to load the SRT for the Video on flash.