Vysor removing left side

Post Reply
Constin
Posts: 8
Joined: Sat Jan 05, 2013 8:59 pm

Vysor removing left side

Post by Constin »

when i actived Vysor i got 4 spaces for boxes. Left, right, upper and down.
I need only one space - right.

How can i remove it?

User avatar
demonnic
Posts: 886
Joined: Sat Dec 05, 2009 3:19 pm

Re: Vysor removing left side

Post by demonnic »

I'm not an expert on Vyzor, but it's designed with a HUD, all-four-edges of the screen UI in mind. I'm not sure if it will take to trying to have only 1.

You might give http://wiki.mudlet.org/w/Manual:Geyser a look... Geyser is designed with smaller pieces of the screen in mind. That having been said, if I were going to try it myself I'd look at setting the size of the three edges I wasn't using to 0,0 for height/width.

Golem
Posts: 30
Joined: Thu Feb 07, 2013 6:46 pm

Re: Vysor removing left side

Post by Golem »

It works with as many as you want. ;-)

If it's supposed to be just the right one you could use this:
Code: [show] | [select all] lua
Vyzor.Options.Borders = {Top = 0, Bottom = 0, Left = 0, Right = 200}
Good luck.

User avatar
Akaya
Posts: 414
Joined: Thu Apr 19, 2012 1:36 am

Re: Vysor removing left side

Post by Akaya »

If you give your borders a value over 1, as shown above, it will be measured in pixels.

But if you give your borders a decimal value, it will be a percentage of its parent Frame.
In this example, your right border will be 25% of your workspace (or Vyzor.HUD).
Code: [show] | [select all] lua
Vyzor.Options.Borders = {Top = 0, Bottom = 0, Left = 0, Right = .25}

User avatar
Oneymus
Posts: 321
Joined: Thu Sep 17, 2009 5:24 am

Re: Vysor removing left side

Post by Oneymus »

I would definitely recommend taking some time to read through the Guide. I've tried to my best to cover any questions people might have, and I'm confident it covers almost all of Vyzor's functionality.

Post Reply