Hi,
I am developing application for Nokia N97 mini in which i have called an flv video using the net stream method which is working fine now i need to give controls like time line rewind forward play pause controls to the user if possible even full screen. Is there an ready component available for the same or i have to do it through code. Please help
FYI
var myConnection:NetConnection = new NetConnection();
myConnection.connect( null );
var myStream:NetStream = new NetStream( myConnection );
videoDisplay.attachVideo( myStream);
myStream.play("Videos/Theory.flv");
btnClose.onRelease = function ()
{
fscommand2( "Quit" );
}
btnHome.onRelease = function ()
{
removeMovieClip(_root.Main.Theory);
_root.Main.attachMovie( "Home", "Home", this.getNextHighestDepth());
}
Above is the code i am using to invoke the flv video.

I have coded like you said and put an flv video into same path as the swf. Then too its not playing and even tried replacing the video with an 3gp file no use. 
the video works fine if i use netstream method. 

