Click to See Complete Forum and Search --> : Automatic posting of jpeg's in a slide show...


n_cairns123
01-29-2003, 10:47 AM
What I'm trying to do is create a page on my client’s site where they can copy and paste jpeg's and have them show up on the site as a slide show(in a pop up window). I want them to be able to do this without my assistance. I'm not too sure what to do or where to start! Any help is greatly appreciated.

jdavia
01-29-2003, 11:27 AM
What I'm trying to do is create a page on my client’s site where they can copy and paste jpeg's and have them show up on the site as a slide show(in a pop up window).
It is a lot more complicated than copy/paste. You know that from your own experience. They would have to do exactly the same things that you do. But can mess up in the process, making more work for you in fixing up their errors. A new image requires a new name in the code. Can they edit your code?
Your best bet is to work out some sort of agreement with them on a timely basis in you doing it for a fee.

n_cairns123
01-29-2003, 01:54 PM
Thanks for your reply... I think you've got a very valid point. It sounds like a very complicated process to me! My clients don't have any knowledge of coding which makes this request even more difficult to fulfill. I will have to think of another alternative for them... do you have any ideas? The slide show format and pop up window isn't that important. I just want it to look professional. Thanks again.

jdavia
01-29-2003, 02:51 PM
Here is a page for an album. You must copy/paste it as many times as you have images, and change the places to reflect the new "page name","image", and "page numbers".
The bold text is what will have to be changed,(5 places in all). It is labeled and spaced for you.


<html>
<head>

--------------------------
<!- change title name -->
<title>page 1</title>

-------------------------
<!- change 002 page number. 6 is the time -->
<META HTTP-EQUIV="Refresh"CONTENT="6;URL=002.html">
</head>
<BODY BGCOLOR="#000000" TEXT="#ffff00">
<CENTER>
<table width="93%" bgcolor="#400040" border=1>
<tr>
<td align=center>

--------------------------
<!-change image name and alt name -->
<IMG SRC="001.jpg" width="550" height="344" ALT="image 001">
</td>
</tr>
</table>

------------------------
<!- Change the page number -->
<A HREF="001.html">Back </a> &nbsp;
<A HREF="contents.html">Contents </a> &nbsp;

------------------------
<!-change next page number-->
<A HREF="[b/002[/b].html">Next</A>
</body>
</html>

Good Luck

n_cairns123
01-29-2003, 05:07 PM
Thanks so much!:)