Page 1 of 1

Resizing that darned "customize toolbar" dialog

Posted: 2012 Mar 08, 20:18
by Caveatrob
Okay- this isn't a perfect solution, but I've been going b*tsh*t crazy trying to find custom commands in the customize toolbar dialog. So I whipped up an Autohotkey Script (autohotkey.com) to resize the thing so I can see many more options.

I haven't yet attempted to sort the listviews, or hack in a search, but that might be next.

To use, run with autohotkey and when in the Customize Toolbar dialog, press alt-C to make it GROOOOWWWWW

Code: Select all


SetTitleMatchMode,Regex

#IfWinActive, Customize Toolbar

!c::
	;WinMove, Customize Toolbar, ,x, y, width,height
	WinMove, A, ,450, 150,,600
	; controlmove, controlname,,x,y,width,height
	ControlMove, ListBox1,,,,500, A
	ControlMove, ListBox2,,,,500, A
	ControlMove, Button6,,150,,75, A
	ControlMove, Button7,,250,,75, A

	Return

#IfWinActive