Thanks, I guess I should upgrade to 10.4. I have been avoiding that because installation requires a dvd drive :( -Joe Lertola On May 30, 2006, at 9:32 PM, Robert Purves wrote: > > Joe Lertola wrote: > >> I can get this code to run. I get a dialogue box that says: "The >> following toolbox items are not available on this computer. >> HIViewSetID" > > HIViewSetID() requires OS X 10.4 > > The fix is to replace the offending call: > > ignore = fn HIViewSetID( button&( _navCustomCheckBox ), ¬ > _"Chck", 1 ) > > by an older equivalent: > > dim as ControlID id > id.signature = _"Chck" > id.id = 1 > ignore = fn SetControlID( button&( _navCustomCheckBox ), id ) > > > Robert P. > > -- > > >