>> Webmaster Instructions <<
Add this code right above the closing body tag (</body>) by using the copy and paste features of your system.
<script src="http://www.omgnvideos.com/Scripts/SSP4_2.js" type="text/javascript" language="javascript" ></script>
<script language="javascript" type="text/javascript">
var
video=new siteSpokePerson();
video.src='http://www.omgnvideos.com/Scripts/ssp_player_1.swf';
video.fla='http://www.omgnvideos.com/video/974962/ssp_01.flv';
video.DoNotShowDays=0;
video.positionFrom='fromBottom';
video.positionHorizontalFrom='fromRight';
video.Location.X=0;
video.Location.Y=0;
video.ReferenceID='imgReference';
video.Intialize();
function hideWhenFinished() {
video.HideWhenFinished();
}
function removeElement() {
document.getElementById('fTrans').style.display = 'none';
document.getElementById('myParent').style.display = 'none';
}
</script>
To change the time between plays for every visit, just alter the video.DoNotShowDays=0; variable to the number of days you want the video to skip playing.
(example: video.DoNotShowDays=7; is one week from the first play to the next play.)
Adjusting playing postion is fairly simple. The instructions default play to the bottom right corner of the browser area. In order to change the location relative to the browser window, make changes to the script at these points:
video.positionFrom='fromBottom';
video.positionHorizontalFrom='fromRight';
Change fromBottom to fromTop (capitalize the T in Top) for top positioning.
Change fromRight to fromLeft (capitalize the L in Left) for left positioning.
Fine tune postioning can be made by altering the X and Y variables from the default 0 to the amount in pixles you wish to move the video along the X (horizontal) axis or the Y (vertical) axis.
Not everyone's browsers or resolutions are the same so pinpoint accuracy is not possible for ALL systems. This will position the video in a general area that you will need. Such as avoiding a picture or text on the site, for example.