Notices

Water Fountain General Chit/Chat

Reply
 
LinkBack Thread Tools
Old 06-13-05, 11:38 PM   #1 (permalink)
Aximsite Elite
 
joedoe101's Avatar
Uber Member
 
Join Date: Dec 2003
Location: Colorado
Posts: 2,862
Thanked 0 Times in 0 Posts
Javascript

If anyone is good with javascript, send me a pm because i need help badly!
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
joedoe101 is offline   Reply With Quote
Sponsor Ads
Old 06-13-05, 11:53 PM   #2 (permalink)
ericcumbee
Guest
 
Posts: n/a
maybe we can help each other? i know a little bit
  Reply With Quote
Old 06-13-05, 11:54 PM   #3 (permalink)
Aximsite Elite
 
joedoe101's Avatar
Uber Member
 
Join Date: Dec 2003
Location: Colorado
Posts: 2,862
Thanked 0 Times in 0 Posts
I know nothing...lol. I am looking for someone to make me a javascript timer that counts down from 10 and when its done, it redirects pages
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
joedoe101 is offline   Reply With Quote
Old 06-14-05, 12:07 AM   #4 (permalink)
ericcumbee
Guest
 
Posts: n/a
sorry that is over my head
  Reply With Quote
Old 06-14-05, 01:22 PM   #5 (permalink)
Aximsite Veteran
 
star882's Avatar
Uber Member
 
Join Date: Oct 2004
Posts: 1,858
Thanked 3 Times in 3 Posts

Awards Showcase
Aximsite Active Bronze Member 
Total Awards: 1

Quote:
I know nothing...lol. I am looking for someone to make me a javascript timer that counts down from 10 and when its done, it redirects pages
I can help you with the timer.
Let's say that an animation is to be drawn, and a time delay is necessary to it works at the right speed.

private void animate(Graphics g)
{
Thread animate = Thread.currentThread();
try
{
//some animation code
animate.sleep(n); //will pause program by n miliseconds
//some more animation code
}
catch(InterruptedException e)
{
}
}

For your Java applet, it would be similar, except that you will call the method to change pages after the delay is over.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

TCPA would take your freedom! Say NO!
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

HDTV the way it should be:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Originally Posted by A friend of mine who has a Linux kernel named after his girlfriend.
If I was VirtualBox, I could load my virtualization module into Hannah and boot up another kernel in the same address space.
star882 is offline   Reply With Quote
Old 06-14-05, 02:12 PM   #6 (permalink)
Aximsite Major League
 
nomadmatt's Avatar
Senior Member
 
Join Date: Aug 2004
Location: Hillsboro OR
Posts: 355
Device: AT&T Tilt
Carrier: What do you think
Thanked 0 Times in 0 Posts

Awards Showcase
Aximsite Contest Winner 
Total Awards: 1

try looking here for the script Http://java-scripts.net what were i got my count down timer that redirects

<!--Customize the time (90) and dest URL to your own-->
<script language="Javascript">
<!--
/*
This credit must stay here for use
For this script, visit java-scripts.net
or http://wsabstract.com
*/

var countdown = "10"

function doCount() {
if (countdown > 0) {
countdown--
}
else {
document.location = "yourpage.html"
}

window.status=countdown + " countdown to doom."
setTimeout('doCount()',1000)
}

doCount()
//-->

</SCRIPT>
edit there the script

Last edited by nomadmatt; 06-14-05 at 02:15 PM.
nomadmatt is offline   Reply With Quote
Old 06-14-05, 03:12 PM   #7 (permalink)
Aximsite Elite
 
joedoe101's Avatar
Uber Member
 
Join Date: Dec 2003
Location: Colorado
Posts: 2,862
Thanked 0 Times in 0 Posts
Thanks nomadmatt, but do you know how to get that out of the bottom bar...like in the page? Also can you like hit a next button to goto the next page once it hits 0
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
joedoe101 is offline   Reply With Quote
Old 06-14-05, 04:46 PM   #8 (permalink)
Aximsite Major League
 
nomadmatt's Avatar
Senior Member
 
Join Date: Aug 2004
Location: Hillsboro OR
Posts: 355
Device: AT&T Tilt
Carrier: What do you think
Thanked 0 Times in 0 Posts

Awards Showcase
Aximsite Contest Winner 
Total Awards: 1

no i do not know how to edit like that
nomadmatt is offline   Reply With Quote
Old 06-14-05, 08:15 PM   #9 (permalink)
Aximsite Elite
 
joedoe101's Avatar
Uber Member
 
Join Date: Dec 2003
Location: Colorado
Posts: 2,862
Thanked 0 Times in 0 Posts
nevermind, a friend of mine got it to work
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
joedoe101 is offline   Reply With Quote
Reply

Tags
javascript

Sponsor Ads

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 03:10 PM.
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Copyright © 2003-09 LeckMedia, LLC