View Single Post
Old 07-22-2014, 12:30 AM   #7
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by JSWolf View Post
But remember, most ePub renderers won't play that video.
I second this.

Also, remember that many ADE-based devices have a bug where they can't click a link that encompasses an image:

Code:
<a href="http://sample.com/videolink"><img alt="Sample Video Title" src="../Images/samplescreenshot.jpg" /></a>
For maximum compatibility, you would want the image, followed by the text link below that leads directly to the video (I know I know, hideous, but will work on any device). This also allows someone with a non-internet connected device to be able to type in the link manually.

Code:
<img alt="Sample Video Title" src="../Images/samplescreenshot.jpg" />

<p><a href="http://sample.com/videolink">http://sample.com/videolink</a></p>
Tex2002ans is offline   Reply With Quote