Page 1 of 1

Widget Idea: Bind for temp minimap enlargement

Posted: 24 Feb 2007, 10:54
by BattleShorts
Hi

My idea is for a widget that allows you to bind a key to toggle between the current minimap size and a larger one (say 1/3 of the screen wide).

If someone good give me a few pointers on this and widget coding in general I'll give it a try. Or if someone wants to make it that'd be much appreciated.

Cheers

Posted: 24 Feb 2007, 16:44
by LordMatt
You can bind maximizing the minimap to a key set:

Code: Select all

minimap <"max" | "maximize"> [0|1]
is done like this

Code: Select all

bind 		  Meta+tab   minimap max
in uikeys.txt but to use that key combo, you need to set meta to space:

Code: Select all

fakemeta 0x020
And unbind any+tab and rebind only tab to toggleoverview

Code: Select all

unbind            Any+tab    toggleoverview
bind                  tab    toggleoverview

Posted: 25 Feb 2007, 01:52
by AF
press tab

Posted: 25 Feb 2007, 05:15
by BattleShorts
Cheers LordMatt