MoveDisplay() and the OS4 Version of Hollywood
Posted: Sun Sep 28, 2014 12:37 am
Hi Andreas,
There seems to be something wrong with MoveDisplay() on OS4. This code works as expected:
However, if I remove the Wait() in each loop, the display does not return to the center of the screen (it just keeps going to the right). This problem shows up on my OS4 machine; but I tried compiling it for Windows, and it worked correctly---with or without the Wait().
There seems to be something wrong with MoveDisplay() on OS4. This code works as expected:
Code: Select all
WaitLeftMouse()
For x=1 To 15
Wait(10)
MoveDisplay(#CENTER+x, #CENTER)
Next
For x=14 To 0 Step -1
Wait(10)
MoveDisplay(#CENTER+x, #CENTER)
Next