mw54finest
|
[How to] Add delay after replay on tciss' scriptby RandomBeast
Sure, find the line (kinda near the bottom of the script) that says
| Code: | | window.location.href = Buttons[i].firstChild.href; |
and replace it with
| Code: | | setTimeout("window.location.href = '" + Buttons[i].firstChild.href + "';",3000); |
the last number (3000 in this example) is the number of milliseconds to delay before loading the next play. 1000 would be 1 second. I set my delay to 3 seconds.
|