I'd do it this wayby Galleon (no login)temp$ = "Loading nothing" numofdots = 3 cx = POS(0) cy = CSRLIN FOR y = 1 TO 10 FOR x = 0 TO numofdots LOCATE cy, cx PRINT temp$ + STRING$(x, ".") + SPACE$(numofdots - x); _DELAY .25 NEXT x NEXT y |
| Response Title | Author and Date |
| *Yeah, that's more efficient | on Feb 5 |
| this type of thing is usually done in the middle of some process | on Feb 5 |
| * WHY are you using MOD 0 + 1??? :-P | on Feb 5 |
| I guess MOD's never good | on Feb 5 |
| The MOD wouldn't have been a problem unless i overflowed. | on Feb 6 |
| Re: this type of thing is usually done in the middle of some process | on Feb 6 |
| Re: this type of thing is usually done in the middle of some process | on Feb 6 |
| Yes! In QB64 using ON TIMER will work, here's an example... | Galleon on Feb 7 |
| *Oh Okay, thanks | on Feb 7 |