I have one order page where I added one video using following code,
<object id=0 type="application/x-shockwave-flash" data="<?php bloginfo('template_url'); ?>/player_flv_maxi.swf" width=445 height=300>
<param name="movie" value=<?php bloginfo('template_url'); ?>/player_flv_maxi.swf />
<param name="wmode" value="opaque" />
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="sameDomain" />
<param name="quality" value="high" />
<param name="menu" value="true" />
<param name="autoplay" value="true" />
<param name="autoload" value="true" />
<param name="FlashVars" value="flv=<?=$video?>&autoplay=1&autoload=1&buffer=5&buffermessage=&playercolor=464646&loadingcolor=999898&buttoncolor=ffffff&buttonovercolor=dddcdc&slidercolor=ffffff&sliderovercolor=dddcdc&showvolume=1&showfullscreen=1&playeralpha=100&title=My Action Wealth&margin=0&buffershowbg=0" />
</object>
And I have one order now button below the video, which is initially disabled, I want to enable this button only after playing a 70-80% of video.
I don't have any idea how to do this I searched on Google also on stack overflow but didn't found the ans.
Anyone please help..