jeg fandt kun dette, hvor man kan scrolle op eller ned :
<SCRIPT Language=\"JavaScript\">
<!--
/*
This header must remain in place
http://www.plebius.org/javascripts/Copyright 1999 All Rights Reserved.
http://www.plebius.orgAuthor: Martin Kretzmann
scripts@plebius.org
License: GNU General Public License
http://www.plebius.org/scripts/license.html*/
/* Configuration */
// number of pixels to scroll down...
n = 700
/*******************************************************/
function scrolldown(){
for (I=1; I<=n; I++){
parent.scroll(1,I);
}
}
function scrollup(){
for (I=n; I>=1; I--){
parent.scroll(n,I);
}
}
//-->
</SCRIPT>
===================================================
part 2 - this is the scroll up button
====================================================
<!-- --><form>
<input type=button value=\"ScrollDown\" onClick=\"scrolldown()\">
</form><!--A1 -->
====================================================
part 3 - this is the scroll down button
=====================================================
<!-- --><form>
<input type=button value=\"ScrollUp\" onClick=\"scrollup()\">
</form><!--A1 -->
Kan du hjælpe mig med, at få det lavet om til at virke således, at man kan scrolle fra venstre til højre ???