Author Topic: Being able to add video  (Read 8453 times)

Gordon260871

  • Newbie
  • *
  • Posts: 13
    • View Profile
Re: Being able to add video
« Reply #15 on: November 07, 2011, 08:37:48 AM »
Hi I would like to be able to play a video if i paused the clock for breaks but am unsure how to apply each of the codes below as i am new to this and HTML would somebody be able to tell me a simple step by step way to do this

Thanks


You can insert video into your layout by inserting a proper HTML element.  Example:

Code:
<OBJECT width="320" height="240"
   CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
   type="application/x-oleobject">
   
   <PARAM NAME="URL" VALUE="PATH_TO_VIDEO">
   <PARAM NAME="AutoStart" VALUE="True">
</OBJECT>

Add this parameter to hide the controls:

Code:
   <PARAM name="uiMode" value="none">

Add this parameter to stop it from repeating:

Code:
   <PARAM name="PlayCount" value="1">

not sure where each code should go

THanks