Problem with HideDisplay and RapaGUI
Posted: Thu Aug 03, 2023 9:32 pm
Hi,
This code works fine on OS 3.9. Notice the @REQUIRE line is commented out.
Requiring RapaGUI throws an error in HideDisplay() given below.
What gives?
NathanH
This code works fine on OS 3.9. Notice the @REQUIRE line is commented out.
Code: Select all
@DISPLAY {x=1, y=1, width=1, height=1, color=#WHITE, borderless=True}
@APPIDENTIFIER "Test"
;@REQUIRE "rapagui"
HideDisplay()
Code: Select all
@DISPLAY {x=1, y=1, width=1, height=1, color=#WHITE, borderless=True}
@APPIDENTIFIER "Test"
@REQUIRE "rapagui"
HideDisplay()
NathanH