P positrom2 Active Member Licensed User Longtime User Jan 6, 2017 #1 How to use ssd.INVERSE? Pops up as "INVERSE as UINT", but then error "=" missing.
Erel B4X founder Staff member Licensed User Longtime User Jan 8, 2017 #2 You should use it as a color. B4X: o.GFX.DrawLine(0, 0, 10, 10, o.INVERSE) Upvote 0
P positrom2 Active Member Licensed User Longtime User Jan 8, 2017 #3 Is possible to invert the screen with a single command? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Jan 8, 2017 #4 Try: B4X: o.gfx.DrawRect(0, 0, o.GFX.Width, o.GFX.Height, o.INVERSE, true) Upvote 0