Hi,
I’ve imported an flv video onto the first frame of a layer using flash, The video is hosted on my server and is linked, as opposed to being embedded on the time line.
I have working play and pause buttons which control the playback of the video, but i just want the video only to play when a user clicks one of these buttons.
I’m using actionscript 2.0 and the following code on my buttons…
The play button…
on (release) {
vid.play();
}
…and for the pause button…
on (release) {
vid.pause();
}
The video instance name is “vid”
Any help would be much appreciated, thanks.
Michael.