[futurebasic] Appearance button popup setrect

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : March 2010 : Group Archive : Group : All Groups

From: Brian Heibert <heibert@...>
Date: Sun, 14 Mar 2010 00:07:54 -0500
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