[FontSetColor,255,200,0]Brush Size Control[FontSetColor,160,160,160]
[VarDef,incr,10]
[VarDef,currsiz,[IGet,draw:drawsize]]
[VarDef,newsiz,64]
[iSlider,"Size Increment",10,1,0,128,"Select Increment to Change the Brush ",
	[varSet,incr,[IGet,zscript:SizeIncrement]]
,0,[TextCalcWidth,SelectMark123456789]]
[iButton,"S+ ","Increment Brush Size Greater",
	[VarSet,newsiz,currsiz + incr]
	[if,newsiz > 128,
		[VarSet,newsiz,128]
		[note,"Error Brush Size > 128",,1]
	]
	[ISet,draw:drawsize,newsiz]
	[VarSet,currsiz,newsiz]
	[note,[iget,draw:drawsize],,1]
,,,SHIFT + 'b'
]
[iButton,"S- ","Increment Brush Size Lesser",
	[VarSet,newsiz,currsiz - incr]
	[if,newsiz < 1,
		[VarSet,newsiz,1]
		[note,"Error Brush Size < 1",,1]
	]
	[VarSet,currsiz,newsiz]
	[ISet,draw:drawsize,newsiz]
	[note,[iget,draw:drawsize],,1]
,,,CTRL+'b'
]
[pd][penMove,0,8]
\C00e0e0About This ZScript:\Cc0c0c0
This script will allow you to change the current \C00e0e0Draw Size\Cc0c0c0 by the use of the buttons or a Keypress
Set the Size increment in \Cffa000Size Increment\Cc0c0c0 slider 
\Cffa000Shift + b\Cc0c0c0 to change \C00e0e0Draw Size\Cc0c0c0 greater
\Cffa000Cntrl + b\Cc0c0c0 to change \C00e0e0Draw Size\Cc0c0c0 Lesser
[PD]
[PD]
[fontSetSizeSmall]\C00e0e0Digit Widget Brush Size Changer, created by Digits\Cc0c0c0

