Resizing that darned "customize toolbar" dialog

Discussion & Support for xplorer² professional

Moderators: fgagnon, nikos, Site Mods

Post Reply
Caveatrob
Member
Member
Posts: 40
Joined: 2008 Aug 01, 18:07

Resizing that darned "customize toolbar" dialog

Post 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
Post Reply