NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Web Design Discussion
Reload this Page cannot find script

Web Design Discussion Discussion of web design techniques, advice, browser issues, software, design firms.

Advanced Search


Closed Thread
 
LinkBack Thread Tools
Old 04-03-2004, 03:53 PM THREAD STARTER               #1 (permalink)
New Member
Join Date: Mar 2004
Posts: 12
sickle is an unknown quantity at this point
 



cannot find script


I'm not 100% sure if there's a javascript for this, but i want something like an arrow pointing up and an arrow pointing down. When you rollover the down arrow, your page scrolls down, and when you rollever the up arrow, your page scrolls up. Check out www.danecook.com His is flash, but it shows you the idea of what I'm looking for.
sickle is offline  
Old 04-03-2004, 05:15 PM   #2 (permalink)
NamePros Member
 
OneEyedDog's Avatar
Join Date: Mar 2004
Location: Middle Earth (NZ)
Posts: 149
OneEyedDog is on a distinguished road
 



Here is a script from http://javascript.internet.com/scrol...-scroller.html that I have modified a bit to use on an existing page it is done with layers:

Quote:
<!-- COPY AND PASTE THIS CODE INTO A BLANK HTML FILE OR COPY THE RELEVANT PARTS INTO YOUR EXISTING PAGE -->

<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Eddie Traversa (psych3@primus.com.au) -->
<!-- Web Site: http://nirvana.media3.net -->

<!-- This script and many more are available free online at -->
????: NamePros.com http://www.namepros.com/web-design-discussion/25582-cannot-find-script.html
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function verScroll(dir, spd, loop) {
loop = true;
direction = "up";
speed = 10;
scrolltimer = null;
if (document.layers) {
var page = eval(document.contentLayer);
}
else {
if (document.getElementById) {
var page= eval("document.getElementById('contentLayer').styl e");
}
else {
if (document.all) {
var page = eval(document.all.contentLayer.style);
}
}
}
direction = dir;
speed = parseInt(spd);
var y_pos = parseInt(page.top);
if (loop == true) {
if (direction == "dn") {
page.top = (y_pos - (speed));
} else {
if (direction == "up" && y_pos < 10) {
page.top = (y_pos + (speed));
} else {
if (direction == "top") {
page.top = 10;
}
}
}
scrolltimer = setTimeout("verScroll(direction,speed)", 1);
}
}
function stopScroll() {
loop = false;
clearTimeout(scrolltimer);
}
// End -->
</script>
</head>
<body>
<div id="contentLayer" style="position:absolute; width:250px; z-index:1; left: 39px; top: 51px">


insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !!

insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !!

insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !!

insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !!

insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !!

insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !!
????: NamePros.com http://www.namepros.com/showthread.php?t=25582

insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !! insert your text here !!

</div>
<div id="scrollmenu" style="position:absolute;width:200px;height:30px;z-index:1; left:400px; top: 40px">
<table border=1><tr><td>
<table>
<tr>
<td align=left>Up</td>
<td> </td>
<td align=right>Down</td>
</tr>
<tr>
<td colspan=3>
<a href="#" onMouseOver="verScroll('up','25','true')" onMouseOut="stopScroll()"><<<</a>
<a href="#" onMouseOver="verScroll('up','5','true')" onMouseOut="stopScroll()"><<</a>
<a href="#" onMouseOver="verScroll('up','1','true')" onMouseOut="stopScroll()"><</a> |
<a href="#" onMouseOver="verScroll('dn','1','true')" onMouseOut="stopScroll()">></a>
<a href="#" onMouseOver="verScroll('dn','5','true')" onMouseOut="stopScroll()">>></a>
<a href="#" onMouseOver="verScroll('dn','25','true')" onMouseOut="stopScroll()">>>></a>
</td>
</tr>
</table>
</td></tr></table>
</div>
</body>
</html>
<!-- Script Size: 7.99 KB -->
You could modify th elayout of the controllers to suit if you wanted images by replacing the <<<< arrows in

Quote:
<a href="#" onMouseOver="verScroll('up','25','true')" onMouseOut="stopScroll()"><<<</a>
... with image tags, there are more scripts similar to this on this page: http://javascript.internet.com/scrolls/

Hope this helps,

Warm Wishes,
__________________
Script Installation, Avatars, Banners and Buttons for $NP or Paypal, PM me your requirements :D
Deni J Vanin | Freelance Jobs and Forums | Web Design
Last edited by OneEyedDog; 04-03-2004 at 05:23 PM.
OneEyedDog is offline  
Old 04-03-2004, 05:34 PM   #3 (permalink)
RJ
NamePros Webmaster


 
RJ's Avatar
Join Date: Feb 2003
Posts: 12,930
RJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatnessRJ Has achieved greatness
 



Find Marrow Donors! Cystic Fibrosis Parkinson's Disease
Real nice, thanks Deni!
__________________
@DomainBuyer facebook
RJ is offline  
Old 04-03-2004, 05:44 PM   #4 (permalink)
NamePros Member
 
OneEyedDog's Avatar
Join Date: Mar 2004
Location: Middle Earth (NZ)
Posts: 149
OneEyedDog is on a distinguished road
 



No probs, I am working on one just like it so it was right there.

Warm Wishes,
__________________
Script Installation, Avatars, Banners and Buttons for $NP or Paypal, PM me your requirements :D
Deni J Vanin | Freelance Jobs and Forums | Web Design
OneEyedDog is offline  
Old 04-03-2004, 07:19 PM   #5 (permalink)
NamePros Expert
 
Anthony's Avatar
Join Date: Dec 2003
Location: NYC
Posts: 9,134
Anthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant futureAnthony has a brilliant future
 

Member of the Month
October 2004

I've used some of those scripts listed there before for this, and most of them are great! Thanks for your example as well!
Anthony is offline  
Old 04-03-2004, 07:36 PM   #6 (permalink)
NamePros Member
 
OneEyedDog's Avatar
Join Date: Mar 2004
Location: Middle Earth (NZ)
Posts: 149
OneEyedDog is on a distinguished road
 



Quote:
Originally posted by Anthony
????: NamePros.com http://www.namepros.com/showthread.php?t=25582
I've used some of those scripts listed there before for this, and most of them are great! Thanks for your example as well!
Yea there are loads out there alright, Internet.com's javascript and http://www.dynamicdrive.com are my two most visited sites for scripts, DD rocks the biggie! If you havent been there yet, go there now!

Warm Wishes,
__________________
Script Installation, Avatars, Banners and Buttons for $NP or Paypal, PM me your requirements :D
Deni J Vanin | Freelance Jobs and Forums | Web Design
OneEyedDog is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


Liquid Web Smart Servers  
All times are GMT -7. The time now is 04:37 AM.

Managed Web Hosting by Liquid Web
Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger