I got this color popup menu
SetRect( @r, 20, 18, 240, 38 )
Appearance Button _colorPop,¬
,, 101, -1,¬
"Select a pen color:", @r,¬
_kControlPopupButtonProc
and I want to have another popup menu for pen size
SetRect ( @r, 100, 18, 240, 38)
Appearance Button _pensizePop,¬
,, 102, -1,¬
"Select a pen size:", @r,¬
_kControlPopupButtonProc
What should the setrect coordinates be to put it below the first popup?
And do I have any errors like is 102, -1 what is the -1 should that be -2 on the second one?
Brian