|
Loading...
|
quicktime-users@lists.apple.com
[Prev] Thread [Next] | [Prev] Date [Next]
Re: Autoloading a web page after movie completes... Eric Carlson Fri Apr 06 12:00:52 2012
Steve - The <video> and <audio> post and 'ended' event when playback finishes, so you can listen for that event and change the page url when your listener is called. Loading a page in a background window is more difficult to do because your script will be blocked by a browser's popup-blocker unless you jump through hoops, but automatically opening a new window behind the current window and loading a page is likely be interpreted by users (or this user anyway ;-)) as annoying so I wouldn't do it. eric On Apr 6, 2012, at 11:25 AM, Steve Meredith wrote: > Using the HTML 5 standard, <video>, how can I make a page load after the > movie has completed playing? > Icing on the cake would be to have the page load in the background (separate > window) as the movie is playing.... I'm sort of familiar with the QTNEXT > parameter in the "Object" parameters but can't seem to make it work in Safari > or other HTML 5 compliant browsers.. > > > > <video controls="controls" width=720 height=406 autoplay="autoplay"> > <source > src="http://opi.mt.gov/streamer/GraduationMattersMT/SAB/SAB_Recruitment.mp4" > type="video/mp4"> > <!-- fallback --> > <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" > codebase="http://www.apple.com/qtactivex/qtplugin.cab" > width="720" height="406" > > <param name="src" > value="http://opi.mt.gov/streamer/GraduationMattersMT/SAB/SAB_Recruitment.mp4" > /> > <param name="controller" value="true" /> > <param name="QTNEXT" value="http://graduationmatters.mt.gov/SAB/"> > <embed > src="http://opi.mt.gov/streamer/GraduationMattersMT/SAB/SAB_Recruitment.mp4" > width="720" height="406" autoplay="true" controller="true" > pluginspage="http://www.apple.com/quicktime/download/"></embed> > </object> > </video> > _______________________________________________ > Do not post admin requests to the list. They will be ignored. > QuickTime-Users mailing list ([EMAIL PROTECTED]) > Help/Unsubscribe/Update your Subscription: > https://lists.apple.com/mailman/options/quicktime-users/eric.carlson%40apple.com > > This email sent to [EMAIL PROTECTED]
_______________________________________________ Do not post admin requests to the list. They will be ignored. QuickTime-Users mailing list ([EMAIL PROTECTED]) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/quicktime-users/alexiscircle%40gmail.com This email sent to [EMAIL PROTECTED]
- Autoloading a web page after movie completes... Steve Meredith 2012/04/06
- Re: Autoloading a web page after movie completes... Eric Carlson 2012/04/06 <=