If you want to lower the file size, make it web accessible, and add a preloader, convert the ppt to flash. If your not familiar with Flash, just Google powerpoint to flash .
buddylee17
Practically a Master Poster
697 posts since Nov 2007
Reputation Points: 232
Solved Threads: 137
Yes here's a showcase of preloader examples. Scroll down and click on the images to see what the preloader looks like. They basically perform two functions.
1. Entertain the user while the movie is downloading
2. Inform the user the progress of the download
Once the download is complete, the flash movie loads and the preloader disappears.
buddylee17
Practically a Master Poster
697 posts since Nov 2007
Reputation Points: 232
Solved Threads: 137
a dirty kludge to make files appear to load faster than the connection speed allows
javascript in the end of the page to load known required files before the link were clicked, but after the page is displayed
ignore image, its just you have to load the file for "something"
puts enough of swf or mpeg into the buffer before the button is clicked that play begins immediately
viewers forgive a lot if they dont see the waiting sign
</body>
<script language="javascript" type="text/javascript">
//<![CDATA[
<!--
file1 = new Image();
file1.src = "anyfileyouwant.anyfiletype";
//-->
//]]>
</script></html>
as long as you dont try to display the swf as an image, you can callit what you like, it will still end up in the tif
almostbob
Posting Sensei
3,147 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376