Question
Play/pause button actionscript
Hi I was wondering how to make a video playable again once
the full the duration of the video has played. I press play and
nothing happens. For the record my play button is also used as a
pause button.
Here is the actionscript I'm using:
on (release){
ns.pause();
if (stopped)
{
ns.seek(0)
ns.play();
stopped=false;
}
}
Here is the actionscript I'm using:
on (release){
ns.pause();
if (stopped)
{
ns.seek(0)
ns.play();
stopped=false;
}
}