One thing that has always bugged me about Vyzor was that my user interface was limited to Vyzor's main border frames: Vyzor.Left, Vyzor.Right, Vyzor.Bottom and Vyzor.Top. But I found a solution!
While tinkering with trying to hide the scroll bar, I not only succeeded in doing so, but was able to place labels over the main console, *outside* Vyzor's main border frames without straying from the Vyzor API.
Here's a pic of not only the scrollbar gone (and stays gone after the Vyzor Resize Event ), but I have a semi-transparent frame over the entire screen giving it a very subtle red tint. There's also a frame placed right over the main window displaying: CRITICAL HIT.
View Full Size
Here's how it works! Rather simple really. In the example above, I created a frame that sits on the far edge of the Vyzor.Left border frame like so:
MainScreen = Vyzor.Frame( "MainScreen", 1, 0, ScreenSize, 1 )
You'll notice that the x position is set to 1, which will push the frame all the way to the far right. I then have a local variable called ScreenSize that is set to getMainWindowSize(). This will make the frame stretch across the entire screen, main window included.