How do I fade into a picture in Frontpage 2003, as with subsequen.

F

fishman

How do I fade into a picture in Frontpage 2003, as with subsequent pictures
(like a slideshow)? I tried to in bluemountaingroove.org, but it only works
in IE. Netscape usres, and others don't get the slideshow.
 
J

Jens Peter Karlsen[FP MVP]

As you wrote, the slideshow only works in IE. Ask the author of the
script what needs to be changed for it to work in all browsers.
You can also look for the script I have posted here a couple of times
lately. That will work in diverse browsers and is not nearly as
complicated as the one you currently use.
It will need a minor adjustment for your use but that is easily done.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
F

fishman

The author responded once a while ago - but I haven't heard back since. I
found one posting (not yours) of a script, but am still confused (I am a
rookie!). Please direct me to the specific scripts you mentioned. And to save
time, if you can offer the "minor adjustments" at the same time, I would
appreciate it. You can see my intent on the opening page of
bluemountaingroove.org.
Thanks

Jens Peter Karlsen said:
As you wrote, the slideshow only works in IE. Ask the author of the
script what needs to be changed for it to work in all browsers.
You can also look for the script I have posted here a couple of times
lately. That will work in diverse browsers and is not nearly as
complicated as the one you currently use.
It will need a minor adjustment for your use but that is easily done.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
-----Original Message-----
From: fishman [mailto:[email protected]]
Posted At: 22. februar 2005 06:15
Posted To: microsoft.public.frontpage.programming
Conversation: How do I fade into a picture in Frontpage 2003,
as with subsequen.
Subject: How do I fade into a picture in Frontpage 2003, as
with subsequen.


How do I fade into a picture in Frontpage 2003, as with
subsequent pictures (like a slideshow)? I tried to in
bluemountaingroove.org, but it only works in IE. Netscape
usres, and others don't get the slideshow
 
J

Jens Peter Karlsen[FP MVP]

Here is the script again:

<html>

<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Mike Canonigo ([email protected]) -->
<!-- Web Site: http://www.munkeehead.com -->

<!-- Modyfied by Jens Peter Karlsen 2003 -->

<!-- Begin
NewImg = new Array (
"images/1.jpg",
"images/2.jpg",
"images/3.jpg"
);

var p = NewImg.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad = new Image();
preLoad.src = NewImg;
}
var ImgNum = 0;
var ImgLength = NewImg.length - 1;

//Time delay between Slides in milliseconds
var delay = 3000;
var t;
var lock = false;
var run;
function chgImg(direction) {

if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDur
ation)";
document.images.SlideShow.filters.blendTrans.Apply();
}
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}

if (document.images) {
ImgNum = ImgNum + direction;
if (ImgNum > ImgLength) {
ImgNum = 0;
}
if (ImgNum < 0) {
ImgNum = ImgLength;
}
document.SlideShow.src = NewImg[ImgNum];
}
}
function auto() {
if (lock == true) {
lock = false;
window.clearInterval(run);
}
else if (lock == false) {
lock = true;
run = setInterval("chgImg(1)", delay);
}
}

// End -->
</script>

</head>

<body>
<img src="images/1.jpg" name="SlideShow" width="125" height="100">
<table>
<tr>
<td align="right"><a href="javascript:chgImg(-1)">Previous</a></td>
<td align="center"><a href="javascript:auto()">Auto/Stop</a></td>
<td align="left"><a href="javascript:chgImg(1)">Next</a></td>
</tr>
</table>

</body>

</html>

Haven't got the time right now to do the changes. Try it yourself and if
you are not succesful let me now and I will look at it later when I have
more time.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
-----Original Message-----
From: fishman [mailto:[email protected]]
Posted At: 24. februar 2005 01:13
Posted To: microsoft.public.frontpage.programming
Conversation: How do I fade into a picture in Frontpage 2003,
as with subsequen.
Subject: Re: How do I fade into a picture in Frontpage 2003,
as with subseq


The author responded once a while ago - but I haven't heard
back since. I found one posting (not yours) of a script, but
am still confused (I am a rookie!). Please direct me to the
specific scripts you mentioned. And to save time, if you can
offer the "minor adjustments" at the same time, I would
appreciate it. You can see my intent on the opening page of
bluemountaingroove.org.
Thanks

Jens Peter Karlsen said:
As you wrote, the slideshow only works in IE. Ask the author of the
script what needs to be changed for it to work in all browsers.
You can also look for the script I have posted here a couple of times
lately. That will work in diverse browsers and is not nearly as
complicated as the one you currently use.
It will need a minor adjustment for your use but that is easily done.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
-----Original Message-----
From: fishman [mailto:[email protected]]
Posted At: 22. februar 2005 06:15
Posted To: microsoft.public.frontpage.programming
Conversation: How do I fade into a picture in Frontpage 2003, as
with subsequen.
Subject: How do I fade into a picture in Frontpage 2003, as with
subsequen.


How do I fade into a picture in Frontpage 2003, as with subsequent
pictures (like a slideshow)? I tried to in bluemountaingroove.org,
but it only works in IE. Netscape usres, and others don't get the
slideshow
 
P

pbn

Hi Fisman
try to make it in powerpoint an look for the code
copy it into frontpage se off et work
best regart
pbn

"fishman" skrev:
 
K

Kevin Spencer

And I'll se you off et work, pbn! ;-)

--
regart,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
M

Murray

I call....

--
Murray
============

Kevin Spencer said:
And I'll se you off et work, pbn! ;-)

--
regart,

Kevin Spencer
Microsoft MVP
.Net Developer
Neither a follower nor a lender be.
 

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