Continuous Scrolling

  • Thread starter Thread starter MollyAnn F.
  • Start date Start date
M

MollyAnn F.

I have a program that allows me to put text and images on a FP 2002 page to
add some dynamics to my site but it scrolls continuously.

Does someone know some Javascript I can add to the page (or to the
Javascript already generated by the program) to tell it to scroll (complete
a cycle) once, twice or three times and then stop? Thanks.
 
Have you contacted the author of the script?

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Hi,

It's not a script. It's a small program made overseas and when I wrote them
I got a reply that indicated they didn't plan to add this in a future
version. That's why I posted my question (plea) here.
 
In the IE address bar, type:

? JavaScript Scrolling text scripts

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
I got lost in all the links and don't really know anything about Javascript
(that's why I bought the program I have). Isn't there a simple piece of code
that I could insert into the html view of 2002 to tell the scrolling to stop
after 2 or 3 cycles?
 
It is impossible for anyone to tell you how to modify some code generated by
a unknown application, without seeing it.

The reason for suggesting that you search for Scrolling Text script is to
help you locate a replacement script for whatever it is that your current
application is generating and the might also have the specific function that
you are looking for.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Thanks for your explanation. I thought Javascript was Javascript, meaning
one piece of code that could say "stop after 2 or 3 cycles" in one program
would function the same way in another. (I found nothing from the links that
looked like it might regulate the script though).
 
JavaScript uses the scrollTo function
self.scrollTo(0,200); // scroll to 200 px from top of page, absolute positioning

But you will have to add your own script options to find the users inner window size, and repeat
--




| Thanks for your explanation. I thought Javascript was Javascript, meaning
| one piece of code that could say "stop after 2 or 3 cycles" in one program
| would function the same way in another. (I found nothing from the links that
| looked like it might regulate the script though).
| | > It is impossible for anyone to tell you how to modify some code generated
| by
| > a unknown application, without seeing it.
| >
| > The reason for suggesting that you search for Scrolling Text script is to
| > help you locate a replacement script for whatever it is that your current
| > application is generating and the might also have the specific function
| that
| > you are looking for.
| >
| > --
| >
| > ==============================================
| > Thomas A. Rowe (Microsoft MVP - FrontPage)
| > WEBMASTER Resources(tm)
| >
| > FrontPage Resources, Forums, WebCircle,
| > MS KB Quick Links, etc.
| > ==============================================
| > To assist you in getting the best answers for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| >
| > | > > I got lost in all the links and don't really know anything about
| > Javascript
| > > (that's why I bought the program I have). Isn't there a simple piece of
| > code
| > > that I could insert into the html view of 2002 to tell the scrolling to
| > stop
| > > after 2 or 3 cycles?
| > > | > > > In the IE address bar, type:
| > > >
| > > > ? JavaScript Scrolling text scripts
| > > >
| > > > --
| > > >
| > > > ==============================================
| > > > Thomas A. Rowe (Microsoft MVP - FrontPage)
| > > > WEBMASTER Resources(tm)
| > > >
| > > > FrontPage Resources, Forums, WebCircle,
| > > > MS KB Quick Links, etc.
| > > > ==============================================
| > > > To assist you in getting the best answers for FrontPage support see:
| > > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > > >
| > > > | > > > > Hi,
| > > > >
| > > > > It's not a script. It's a small program made overseas and when I
| wrote
| > > > them
| > > > > I got a reply that indicated they didn't plan to add this in a
| future
| > > > > version. That's why I posted my question (plea) here.
| > > > > | > > > > > Have you contacted the author of the script?
| > > > > >
| > > > > > --
| > > > > >
| > > > > > ==============================================
| > > > > > Thomas A. Rowe (Microsoft MVP - FrontPage)
| > > > > > WEBMASTER Resources(tm)
| > > > > >
| > > > > > FrontPage Resources, Forums, WebCircle,
| > > > > > MS KB Quick Links, etc.
| > > > > > ==============================================
| > > > > > To assist you in getting the best answers for FrontPage support
| see:
| > > > > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > > > > >
| > > > > > | > > > > > > I have a program that allows me to put text and images on a FP
| > 2002
| > > > page
| > > > > > to
| > > > > > > add some dynamics to my site but it scrolls continuously.
| > > > > > >
| > > > > > > Does someone know some Javascript I can add to the page (or to
| the
| > > > > > > Javascript already generated by the program) to tell it to
| scroll
| > > > > > (complete
| > > > > > > a cycle) once, twice or three times and then stop? Thanks.
| > > > > > >
| > > > > > >
| > > > > >
| > > > > >
| > > > >
| > > > >
| > > >
| > > >
| > >
| > >
| > >
| >
| >
|
|
|
 
Back
Top