webcam???

djdixie

New Member
hey, i was wondering if their was a mod that i could have a webcam stream on the front on my forum, just i have my radio stream their and i thought it would be a good idea if their was a way to see the dj,

thanks,
dixie
 
Code:
http://www.vbulletin.org/forum/showthread.php?t=154070&highlight=webcam

Upload all the files/folders inside to your forums root directory.

Find in navbar:
HTML:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>

After add:
HTML:
<!-- my webcam --> 
<script type="text/javascript"> 
<!-- 

function OpeniPod(){ 
webcam = window.open('webcam.htm','webcam','directories=no,height=240,width=320,location=no,menubar=no,resizable=no,status=no,toolbar=no') 

return false; 
} 

--> 
</script> 
<td class="vbmenu_control"><a href="#" onclick="return Openwebcam()">webcam</a></td> 
<!-- my webcam -->
 
Back
Top