Rotating Pictures

G

Guest

Can someone please tell me what part of the FP2003 book (that I've read at
least 10 times from cover to cover) can tell me how to make pictures rotate?
For example, I have a large picture at the top of a page and 3 small pictures
under the large picture. How can I click on either of the small pictures to
make it take the place of the large picture? And the large picture becomes
the small picture. Hope that makes sense! I call that rotating pictures.
What is it called? Is it in the book? Can you please explain how I can do
this? As always, I appreciate your help!!!!!
GoneFishing
 
T

Trevor L.

From an amateur.

My guess is that FP would not support this in any of its incarnations (i.e.
FP2000, 2002, 2003)

But with some JS it could be acheived.

I don't know if others can assist you easily. I think Murray has a similar
thing where he has 3 or 4 smaller pictures down the left and a larger iframe
in the centre. When any of the smaller pictures is clicked on, it opens in
the frame. Clicking on another smaller picture replaces the larger. This may
be good enough to do what you want. I can post it Murray doesn't mind.

If not, I will have a go at some code later today (AEST)
 
A

Auerbach

gonefishing said:
Can someone please tell me what part of the FP2003 book (that I've read at
least 10 times from cover to cover) can tell me how to make pictures
rotate?
For example, I have a large picture at the top of a page and 3 small
pictures
under the large picture. How can I click on either of the small pictures
to
make it take the place of the large picture? And the large picture
becomes
the small picture. Hope that makes sense! I call that rotating pictures.
What is it called? Is it in the book? Can you please explain how I can
do
this? As always, I appreciate your help!!!!!
GoneFishing

I believe you are simply thinking of one of the standard layouts for a
Frontpage Photo Gallery. In Microsoft Frontpage 2003 (and earlier versions)
just create a new web page, then on the Insert menu at the top of the page
select Web Component, then Photo Gallery. A dialog box then asks you to
select one of several standard layouts. The third option is "Slideshow," the
one you want. Then just point-and-click to add your photos to the layout,
give them captions, and you are done. You can change the layout at any time.

More useful tips here:
http://www.outfront.net/tutorials_02/fp_techniques/photogallery.htm

Alex
 
T

Trevor L.

Here is Murray's code
Younede to chage images/1.jpg , images/2.jpg , images/3.jpg to your names

<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Slideshow Demo</title>
<script language="JavaScript">
<!--
function FP_setLayerText(id,txt)
{//v1.0
var el = FP_getObjectByID(id)
if(el.innerHTML)
el.innerHTML = txt
}

function FP_getObjectByID(id,o)
{// v1.0
var c, el, els, f, m, n
if(!o) o = document

if(o.getElementById)
el = o.getElementById(id)
else if(o.layers)
c = o.layers
else if(o.all)
el = o.all[id]

if(el)
return el

if(o.id==id || o.name==id)
return o

if(o.childNodes)
c = o.childNodes
if(c)
for(n = 0; n < c.length; n++)
{ el = FP_getObjectByID(id,c[n])
if(el)
return el }

f = o.forms
if(f)
for(n = 0; n < f.length; n++)
{ els = f[n].elements
for(m = 0; m < els.length; m++)
{ el = FP_getObjectByID(id,els[n])
if(el)
return el }
}
return null
}
// -->
</script>
</head>

<body>

<div id="layer1"
style="position: absolute; width: 400px; height: 400px;
z-index: 1; left: 200px; top: 30px;
font-family: trebuchet,verdana,arial,sans-serif;
font-size: 14px; font-color: black; background: #FFC;
border: 8px green inset; padding: 15px;">
watch this space
</div>

<p><a href="javascript:;"
onclick="FP_setLayerText('layer1',
'&lt;img src = &quot;images/1.jpg&quot;&gt;')">
<img border="0" src="images/1.jpg" width="100" height="100">
</a></p>

<p><a href="javascript:;"
onclick="FP_setLayerText('layer1',
'&lt;img src = &quot;images/2.jpg&quot;&gt;')">
<img border="0" src="images/2.jpg" width="100" height="100">
</a></p>

<p><a href="javascript:;"
onclick="FP_setLayerText('layer1',
'&lt;img src = &quot;images/3.jpg&quot;&gt;')">
<img border="0" src="images/3.jpg" width="100" height="100">
</a></p>

</body>

</html>
 
G

Guest

Alex,

Thanks. As I have read these pages many times, sometimes I forget where I
read what! I was able insert the photo gallery to get this done. However, I
would like to get the larger picture on top and the smaller pictures below
the larger one. I don't see this information anywhere. Can this be done?
Thanks again!

GoneFishing
 
T

Thomas A. Rowe

Not available when using the FP Photo Gallery component.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
?

=?Windows-1252?Q?Rob_Giordano_\=28Crash_Gordon=AE\

You can if you use JAlbum...it's free, customizable, and can be Imported into FP easily.



| Alex,
|
| Thanks. As I have read these pages many times, sometimes I forget where I
| read what! I was able insert the photo gallery to get this done. However, I
| would like to get the larger picture on top and the smaller pictures below
| the larger one. I don't see this information anywhere. Can this be done?
| Thanks again!
|
| GoneFishing
|
| "Auerbach" wrote:
|
| > | > > Can someone please tell me what part of the FP2003 book (that I've read at
| > > least 10 times from cover to cover) can tell me how to make pictures
| > > rotate?
| > > For example, I have a large picture at the top of a page and 3 small
| > > pictures
| > > under the large picture. How can I click on either of the small pictures
| > > to
| > > make it take the place of the large picture? And the large picture
| > > becomes
| > > the small picture. Hope that makes sense! I call that rotating pictures.
| > > What is it called? Is it in the book? Can you please explain how I can
| > > do
| > > this? As always, I appreciate your help!!!!!
| > > GoneFishing
| >
| > I believe you are simply thinking of one of the standard layouts for a
| > Frontpage Photo Gallery. In Microsoft Frontpage 2003 (and earlier versions)
| > just create a new web page, then on the Insert menu at the top of the page
| > select Web Component, then Photo Gallery. A dialog box then asks you to
| > select one of several standard layouts. The third option is "Slideshow," the
| > one you want. Then just point-and-click to add your photos to the layout,
| > give them captions, and you are done. You can change the layout at any time.
| >
| > More useful tips here:
| > http://www.outfront.net/tutorials_02/fp_techniques/photogallery.htm
| >
| > Alex
| >
| >
| >
 
G

Guest

JAlbum? My girlfriend's website has one picture on top and the other
pictures...3 to 5 pictures under the larger picture. The pictures are
separated by a line. When you click on either of the smaller pictures, that
picture will move to the top position and become larger. You're thinking why
don't I ask her? Well, early on I felt that she was not happy with my
questions about designing a site even though we're miles apart. You know how
the definition of FRIEND has different meanings depending on the
circumstances? Well, this made me wonder. And for that reason, I really
appreciate you FRONTPAGE GODS! She uses Frontpage 2003. Thanks again.
 
G

Guest

Well, I know it's not jalbum.com. That's a Chinese website. Where do I find
JAlbum? Thanks.
 
T

Trevor L.

jalbum.net

BTW, I sent you some code by Murray which does simialr things. Was this
useful?
 
K

Kevin Spencer

Google is my home page. If you go to www.google.com and type in "JAlbum"
their web site is first on the list. You'd be amazed how much you can find
out, and how quickly, just by using Google.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven
 
?

=?Windows-1252?Q?Rob_Giordano_\=28Crash_Gordon=AE\

sorry i was late for an appt and forgot the post the link...others did.


| JAlbum? My girlfriend's website has one picture on top and the other
| pictures...3 to 5 pictures under the larger picture. The pictures are
| separated by a line. When you click on either of the smaller pictures, that
| picture will move to the top position and become larger. You're thinking why
| don't I ask her? Well, early on I felt that she was not happy with my
| questions about designing a site even though we're miles apart. You know how
| the definition of FRIEND has different meanings depending on the
| circumstances? Well, this made me wonder. And for that reason, I really
| appreciate you FRONTPAGE GODS! She uses Frontpage 2003. Thanks again.
| --
| GoneFishing
|
|
| "Rob Giordano (Crash Gordon®)" wrote:
|
| > You can if you use JAlbum...it's free, customizable, and can be Imported into FP easily.
| >
| >
| >
| > | Alex,
| > |
| > | Thanks. As I have read these pages many times, sometimes I forget where I
| > | read what! I was able insert the photo gallery to get this done. However, I
| > | would like to get the larger picture on top and the smaller pictures below
| > | the larger one. I don't see this information anywhere. Can this be done?
| > | Thanks again!
| > |
| > | GoneFishing
| > |
| > | "Auerbach" wrote:
| > |
| > | > | > | > > Can someone please tell me what part of the FP2003 book (that I've read at
| > | > > least 10 times from cover to cover) can tell me how to make pictures
| > | > > rotate?
| > | > > For example, I have a large picture at the top of a page and 3 small
| > | > > pictures
| > | > > under the large picture. How can I click on either of the small pictures
| > | > > to
| > | > > make it take the place of the large picture? And the large picture
| > | > > becomes
| > | > > the small picture. Hope that makes sense! I call that rotating pictures.
| > | > > What is it called? Is it in the book? Can you please explain how I can
| > | > > do
| > | > > this? As always, I appreciate your help!!!!!
| > | > > GoneFishing
| > | >
| > | > I believe you are simply thinking of one of the standard layouts for a
| > | > Frontpage Photo Gallery. In Microsoft Frontpage 2003 (and earlier versions)
| > | > just create a new web page, then on the Insert menu at the top of the page
| > | > select Web Component, then Photo Gallery. A dialog box then asks you to
| > | > select one of several standard layouts. The third option is "Slideshow," the
| > | > one you want. Then just point-and-click to add your photos to the layout,
| > | > give them captions, and you are done. You can change the layout at any time.
| > | >
| > | > More useful tips here:
| > | > http://www.outfront.net/tutorials_02/fp_techniques/photogallery.htm
| > | >
| > | > Alex
| > | >
| > | >
| > | >
| >
 
G

Guest

I forgot to post here. My new post is under...Where do I insert? I went to
dynamic dive.com and tried to get this done. I didn't know where to insert
the lanuage for the pictures. I put the cursor behind these brackets <body>
I inserted here. I messed up my page so bad after I tried to delete it. I
tried to insert a shopping cart and then a drop down menu. I know this is a
lot to ask, but I think if I can find out where to insert, I can do this...I
guess, I hope!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top