[futurebasic] Re: [FB] HIView - flashing bead

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : September 2011 : Group Archive : Group : All Groups

From: Bernie <fblist.bw@...>
Date: Tue, 20 Sep 2011 13:41:15 +0100
I wrote:

> 
> 	fn HIViewAddSubview(button&( _cBead1 ),button&( _cPin1 )  )
> 

Just noticed that, in the above, you've got your buttons the wrong way round. Should be HIViewAddSubView( parent, child ):

	fn HIViewAddSubview( button&( _cPin1 ), button&( _cBead1 )  )

which means you'll have to change the bead rects.

Bernie