Click here to Skip to main content
15,913,486 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: HELP WITH TRANSPARENT TABLES Pin
Boro_Bob17-Aug-06 10:30
Boro_Bob17-Aug-06 10:30 
GeneralRe: HELP WITH TRANSPARENT TABLES [modified] Pin
Joey Picerno17-Aug-06 10:41
Joey Picerno17-Aug-06 10:41 
GeneralRe: Help with transparent tables Pin
Guffa17-Aug-06 12:05
Guffa17-Aug-06 12:05 
GeneralRe: HELP WITH TRANSPARENT TABLES Pin
Boro_Bob17-Aug-06 22:34
Boro_Bob17-Aug-06 22:34 
GeneralRe: HELP WITH TRANSPARENT TABLES Pin
Joey Picerno18-Aug-06 4:19
Joey Picerno18-Aug-06 4:19 
GeneralRe: HELP WITH TRANSPARENT TABLES Pin
Boro_Bob18-Aug-06 12:25
Boro_Bob18-Aug-06 12:25 
QuestionNeed help with java script - next button on banner not working right Pin
Grapes-R-Fun17-Aug-06 3:14
Grapes-R-Fun17-Aug-06 3:14 
AnswerRe: Need help with java script - next button on banner not working right Pin
Guffa17-Aug-06 7:05
Guffa17-Aug-06 7:05 
If you call the loop() function more than once, you will start another loop that runs along side the one that was started initially. Each time you call the loop() function you add another loop, that's why the items rotate faster and faster.

I would suggest that you add a counter to the loop and fire it a lot more often. That way you can just zero the counter to make it skip to the next item:

var counter;

function DisplayBanner(result, context) {
   ...get xml representation of banner items
   ...assign variables
   counter = 100;
   loop();
}

function loop() {
   counter--;
   if (counter <= 0) {
      ...go through displaying one banner item
      ...increment banner index
      counter = 100;
   }
   window.setTimeout('loop()', 100);
}

function nextBanner() {
   counter = 0;
}



---
b { font-weight: normal; }

GeneralGuffa is Awesome! Pin
Grapes-R-Fun17-Aug-06 7:31
Grapes-R-Fun17-Aug-06 7:31 
QuestionHow can i create a table contain more than 255 filed in MS Access? Pin
Hy Chanhan17-Aug-06 2:29
professionalHy Chanhan17-Aug-06 2:29 
AnswerRe: How can i create a table contain more than 255 filed in MS Access? Pin
Guffa17-Aug-06 2:56
Guffa17-Aug-06 2:56 
GeneralRe: How can i create a table contain more than 255 filed in MS Access? Pin
Eric Dahlvang17-Aug-06 11:46
Eric Dahlvang17-Aug-06 11:46 
GeneralRe: How can i create a table contain more than 255 filed in MS Access? Pin
Guffa17-Aug-06 12:08
Guffa17-Aug-06 12:08 
GeneralRe: How can i create a table contain more than 255 filed in MS Access? Pin
Hy Chanhan17-Aug-06 17:44
professionalHy Chanhan17-Aug-06 17:44 
AnswerRe: How can i create a table contain more than 255 filed in MS Access? Pin
Guffa17-Aug-06 21:43
Guffa17-Aug-06 21:43 
GeneralRe: How can i create a table contain more than 255 filed in MS Access? Pin
Hy Chanhan18-Aug-06 2:09
professionalHy Chanhan18-Aug-06 2:09 
GeneralRe: How can i create a table contain more than 255 filed in MS Access? Pin
eggsovereasy18-Aug-06 4:05
eggsovereasy18-Aug-06 4:05 
GeneralRe: How can i create a table contain more than 255 filed in MS Access? Pin
Hy Chanhan19-Aug-06 0:36
professionalHy Chanhan19-Aug-06 0:36 
QuestionHow can i create a table contain fields more than 255 in MYSQL? Pin
Hy Chanhan17-Aug-06 2:27
professionalHy Chanhan17-Aug-06 2:27 
AnswerRe: How can i create a table contain fields more than 255 in MYSQL? Pin
Paddy Boyd17-Aug-06 2:55
Paddy Boyd17-Aug-06 2:55 
GeneralRe: How can i create a table contain fields more than 255 in MYSQL? Pin
Hy Chanhan17-Aug-06 17:41
professionalHy Chanhan17-Aug-06 17:41 
AnswerRe: How can i create a table contain fields more than 255 in MYSQL? Pin
Guffa17-Aug-06 2:56
Guffa17-Aug-06 2:56 
GeneralRe: How can i create a table contain fields more than 255 in MYSQL? Pin
Hy Chanhan17-Aug-06 17:43
professionalHy Chanhan17-Aug-06 17:43 
AnswerRe: How can i create a table contain fields more than 255 in MYSQL? Pin
Guffa17-Aug-06 22:00
Guffa17-Aug-06 22:00 
GeneralRe: How can i create a table contain fields more than 255 in MYSQL? Pin
Hy Chanhan18-Aug-06 2:04
professionalHy Chanhan18-Aug-06 2:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.