I want to use videobox.js and have the video so when you click on it, it goes to a checkout. I have a good web bg, but for someone that has experience in this area it should be a 5 min task. I will pay 10 bucks for someone to help me with the embed code to get this done. I am going to use jw flv player. Thanks, Rodder
This is what I have: <html> <head> <script language="javascript" type="text/javascript" src="mootools.js"></script> <script language="javascript" type="text/javascript" src="videobox.js"></script> <script language="javascript" type="text/javascript" src="swfobject.js"></script> <link rel="stylesheet" href="videobox.css" type="text/css" /> </head> <body> <div id="player">This text will be replaced</div> <script type="text/javascript"> function createPlayer() { var so = new SWFObject('player.swf','mpl','320','240','9'); so.addParam('allowscriptaccess','always') so.addParam('allowfullscreen','true');so.addParam('flashvars','&file=file.flv&logo=logo.gif'); so.addVariable("file","file.flv"); so.write('player'); } </script> <a href="file.flv" rel="vidbox 320 240" title="caption" onclick="javascript:createPlayer(); return false;">Load Player</a> </body> Code (markup):