Displaying a presentation list on your web site

We receive a lot of questions from our customers on how to make a list of clickable presentations and have them opened  in a new, current  or a popup browser window on a mouse click. In this post I am going to give you some idea on how to make those links work your way.

Opening a presentation in a current browser window

Solution: add target=”_self” parameter into following HTML tag:

 <a href="pres.html" target="_self">Open in current window</a>

This will look like this:

Happy Helloween
Principles of marketing

Opening a presentation in a new browser window

Solution: add target=”_blank” parameter into following HTML tag:
<a href=”presentation_name.html” target=”_blank”>Presentation title</a>

It gives us:

Happy Helloween
Principles of marketing

Opening a presentation in a popup window

Solution:
Add a simple JavaScript function to your HTML code. If exact dimensions of a new window are important you can declare them in the function’s body:

<script>
function OpenWindow(url, name)
{
    window.open(url, title, "resizable=0,width=954,height=620");
}
</script>

Change a corresponding piece of HTML code into:

 <a href="#" onclick="javascript:OpenWindow('presentation.html', 'Popup');">Presentation title</a>

This will give us exactly what we need

By the way, your presentations links can be displayed not only as an insipid list, but as images, too. In this case you need to put an <img src=”image path”> tag within <a>:

<a href="#" onclick="javascript:OpenWindow('presentation.html', 'Popup');"><img src=”thumbnail.jpg”/></a>

Thus your website visitors can click a presentation thumbnail to view it in a pop-up window.

Hope this information is helpful. You are always welcome to contact our Support Team support@ispringsolutions.com if you need any further instructions.

4 Responses to “Displaying a presentation list on your web site”:

1. michael miller
October 28th, 2009 at 17:19

I have a trial account (about a week old), and placed a PPT presentation on it. It worked fine for awhile, but now when the presentation plays there is no video, only sound. Please advise.

Thanks, Mike


2. dswami
November 12th, 2009 at 09:40

iSpring, is great! I would like to find out, is there a way I can upload a power point presntation after converison to flash in blogger. I would appreciate a feedback. Thanks. regards


3. Aleksey Malov
November 18th, 2009 at 21:09

iSpring generates ordinary Flash files. So if you can upload an ordinary SWF file to you blogger account, you will be able to do the same with an SWF file created with iSpring


4. Bruce
May 19th, 2010 at 20:01

iSpring, is great! I would like to find out, is there a way I can upload a power point presntation after converison to flash in blogger. I would appreciate a feedback. Thanks. regards

Leave a Comment

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>