Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

quicktime integration into one page

Status
Not open for further replies.

phillipL

Technical User
Jul 16, 2003
1
DK
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top