68kMLA Classic Interface
This is a version of the 68kMLA forums for viewing on your favorite old mac. Visitors on modern platforms may prefer the main site.
| Click here to select a new forum. | | Think Pascal and Delay | Posted by: HippieMac on 2022-08-02 17:17:45 Hello everyone, I have been trying to learn programming using think pascal but I am having trouble trying to delay what is happening in my code. I am drawing two circles but would like to delay the time in between them being drawn. I have tried delay(5000) which I believe would mean delay for five seconds but it says that too few parameters are met. Does anyone have any ideas on what I might be missing or another way to delay? I tried Sleep() but think pascal does not recognize sleep. | Posted by: Crutch on 2022-08-02 18:12:13 Var ticks : LONGINT;
Begin
Delay(5000, ticks);
End; | Posted by: HippieMac on 2022-08-02 18:33:00 Crutch, thanks for the help!!!! I’ve been reading a lot of books but nothing I found in the primer or object based think pascal books mention this. I appreciate all the help you have given me on 68kmla!!!!! | | 1 |
|