View Single Post
  #4  
Old 07-15-2008, 12:28 PM
Skyway Scott
Guest
 
Posts: n/a
Default

Here is the basic stuff, if it helps. Tx. I wonder if Steve has JavaS blocked? (nightmare)

<div id="LiveActor" style="position:absolute;top:2px; left:520px; z-index:999;"">

<script type="text/javascript">

var vWidth=150; // set to the width of .flv video

var vHeight=325; // set to the height of .flv video

var contentpath = "http://www.videoforprofit.com/player8/demos/lisa/";

var swfPlayer="mlp_player_8.swf"; // set path to .swf videoPlayer file

var divId="LiveActor";

var so = new SWFObject(contentpath+swfPlayer, "mymovie", vWidth, vHeight, "8");

so.addParam("wmode", "transparent");

so.addVariable("autoplay", 'true');

so.addVariable('iconcolor', "teal"); // standard color options are black, blue, green, orange, pink, purple, red and teal

so.addVariable('path', contentpath); // content path

so.addVariable('videoW', vWidth);

so.addVariable('videoH', vHeight);

//BEGIN COOKIE FEATURES//

so.addVariable('hoursDelayInterval', 0); //Use a cookie to set number of hours before video plays again.

so.addVariable('daysDelayInterval', 0); //Use a cookie to set number of days before video plays again.

so.addVariable('delayVideoId', "video1"); //Set the videos ID number if you are cycling multiple videos.

//END COOKIE FEATURES//

so.write(divId);

</script>

</div>
Reply With Quote