Jump to content

watch your browser move.


harrytb

Recommended Posts


Its just java script:

<script language=javascript>

function moveleft(){
parent.moveBy(-3,0)
}
function moveleft1(){
parent.moveBy(-1,0)
}
function moveleft2(){
parent.moveBy(-4,0)
}
function moveleft3(){
for (x=7;x>=0;x--)
{
parent.moveBy(-x,0)
}
}


function moveup(){
for (x=6;x>=0;x--)
{
parent.moveBy(0,-x)
}
}
function moveup1(){
for (x=5;x>=0;x--)
{
parent.moveBy(-3,-x)
}
}


function movedown(){
parent.moveBy(0,3)
}
function movedown2(){
for (x=6;x>=0;x--)
{
parent.moveBy(0,x)
}
}
function movedown3(){
for (x=8;x>=0;x--)
{
parent.moveBy(0,x)
}
}
function movedown4(){
for (x=8;x>=0;x--)
{
parent.moveBy(5,x)
}
}
function movedown5(){
parent.moveBy(0,1)
}


function moveright(){
for (x=9;x>=0;x--)
{
parent.moveBy(x,0)
}
}
function moveright1(){
parent.moveBy(1,0)
}
function moveright2(){
parent.moveBy(3,0)
}
function moveright3(){
for (x=3;x>=0;x--)
{
parent.moveBy(x,0)
}
}

</SCRIPT>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...