hi, how can I load a quicktime movie and then use buttons on the html page to update just the quicktime instead of loading a whole new page? from the button I call: href="javascript:doVid('video_0.mov');" for movies 0 thru 5.
then my javascript function looks like this:
function doVid(movieName) {
var video_path = "video/";
var src = video_path + movieName;
document.mainvid.src = src;
}
i have named the movie: name="mainvid" in the embed
I'm new to javascript so any thoughts or insights would be appreciated. I've googled but can't get anything more than picture swaps so this is where I was building from. thanks.
then my javascript function looks like this:
function doVid(movieName) {
var video_path = "video/";
var src = video_path + movieName;
document.mainvid.src = src;
}
i have named the movie: name="mainvid" in the embed
I'm new to javascript so any thoughts or insights would be appreciated. I've googled but can't get anything more than picture swaps so this is where I was building from. thanks.