- Joined
- Jun 26, 2020
- Messages
- 1,928
Hello, I made this to hide the UI:
And worked well, but if I select a unit, the command buttons still appear, I think is because I didn't hide the ConsoleUIBackdrop, but I can't do that because I need it visible.
How can I hide them then? Also how can I make me won't able to select any unit to reappear them? I tried:
But didn't work and disabling the user control is not an option because I still wanna be able to control the mouse.
What can I do?
JASS:
BlzHideOriginFrames(true)
BlzFrameSetSize(BlzGetFrameByName("ConsoleUIBackdrop",0), 0, 0.0001)
How can I hide them then? Also how can I make me won't able to select any unit to reappear them? I tried:
JASS:
BlzFrameSetEnable(BlzGetOriginFrame(ORIGIN_FRAME_WORLD_FRAME, 0), false)
What can I do?