How do I create a Picture viewer in Front Page 2000?

T

Tom

I want to create a "frame" with a "next" & "previous" button
to scroll thru pictures. Can someone help?

Thanks,

Tom P.
 
T

Tom Pepper Willett

There are several slide show scripts here:

http://www.dynamicdrive.com/dynamicindex14/index.html
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
FrontPage 2002 Server Extensions Support Center:
http://support.microsoft.com/default.aspx?scid=fh;en-us;fp10se
===
|I want to create a "frame" with a "next" & "previous" button
| to scroll thru pictures. Can someone help?
|
| Thanks,
|
| Tom P.
 
T

Tom

I keep getting Script errors
regardless of which script I put in.

They all say "Library Not Registered"

Help...

Tom
 
A

Andrew Murray

simple way: just create a page for each image, with a table, place the image
in the table, add links for 'back and 'next' and link the appropriate pages
i.e. page1.htm will have "next" link to page2.htm; page2.htm will have link
for "Back" (to page1.htm) and "Next" (to page3.htm) etc....

The back links can be done like <a href="#"
onclick='go.history(-1);'>Back</a> which will automatically go back 1 screen
(to whatever the immediate previous page was) to the previous screen/page.

Otherwise there are scripts that can organise and sort this more
automatically - javascript or server side scripting will be needed.
 
Top