Hello team!
As advised on the Discord, I'm posting my whole code here.
My screen is flickering when displaying images and text.
It is a _DISPLAY placing issue.
At the beginning of the loop, I actually have 24 cases.
In those cases are strings as well.
This flickering is surely due to a wrong order of commands and a lack of _display somewhere, however, I don't know where it should be placed for my program to work.
There are several DO...LOOP inside this big WHILE...WEND, and I would like to know where to put the _DISPLAY commands in order to stop the flickering.
Thank you in advance for your help!
As advised on the Discord, I'm posting my whole code here.
My screen is flickering when displaying images and text.
It is a _DISPLAY placing issue.
At the beginning of the loop, I actually have 24 cases.
Code: (Select All)
While casenumber <> 25
Case 1
...
Case 2
...
Etc.
Then images and more strings
Then INPUT with a number to select a case
_display
WEND
In those cases are strings as well.
This flickering is surely due to a wrong order of commands and a lack of _display somewhere, however, I don't know where it should be placed for my program to work.
There are several DO...LOOP inside this big WHILE...WEND, and I would like to know where to put the _DISPLAY commands in order to stop the flickering.
Thank you in advance for your help!