AVConference

Video conference software for your web site.

Find out more details Launch demo


Also available as:
Joomla! 1.5 Component

AVConference moderator logged in

Making AVConference open up in pop up windows.


Prerequisites:

  • working AVConference installation
  • acess to the web server where the client side files are installed

By default when you install AVConference, you type in the browser the URL address of a HTML page provided in the software archive, and the AVConference client/admin flash interface shows up. This flash interface is embedded in the HTML file using some HTML tags

Lets say that you want a text link on your homepage of your website that when clicked brings up a pop up window in which the AVConference client interface shows up.

The text link on the homepage is created by adding this HTML code to your homepage:


<script type="text/javascript">
function popitup(url,hh,ww) {
newwindow=window.open(url, 'name', 'height='+hh+', width='+ww+', resizable=yes, scrollbars=yes');
if (window.focus) {newwindow.focus()}
return false;
}
</script>

<a href="http://yourwebsite.com/avconf/index.html" onclick="return popitup('http://yourwebsite.com/avconf/index.html',580,970)" target="_blank" >Launch AVConference</a>

You need to change http://yourwebsite.com/avconf/index.html to point to the index.html file that came with your AVConference archive.

580,970 are the height and width of the pop up window that will open and you can change them to make the pop window bigger or smaller. The above numbers bring up a pop up window resized to the standard AVConference width and height.

If instead of a text link you want an image button (just like on our AVConference demo page) you need to replace Launch AVConference with the proper HTML tag for inserting an image:

<img src="http://site.com/image.jpeg" />