You shouldn't need to do any of this. Simply declaring the kHIToolbarSeparatorIdentifier as an allowed identifier puts a proper separator in the customization sheet, that you can use multiples of. You don't need to act on it at all.
And I guess I need to look into why we can't move windows like you say. It's a true toolbar, so it should just work. Either the carbon version doesn't do it, or I did something wrong. I'm guessing the latter. -- Thom McGrath The ZAZ Studios <http://www.thezaz.com/> AIM: thezazstudios On Apr 12, 2007, at 11:59 PM, Paul Levine wrote: > For anyone using your classes, if you add this code to the > HIToolbarItem constructor; > > if inIdentifier = kHIToolbarSeparatorIdentifier Then > Options =kItemIsSeparator +kAllowDuplicates > End > > kItemIsSeparator as Integer: method returns > return bitwise.shiftleft(1,3)//separators go the full length of the > window > > kAllowDuplicate As Integer; > return bitwise.shiftleft(1,0)//duplicated > > Then pass Options into the HIToolbarItemCreate declare, separators > will look proper in toolbars (ie being larger than other toolbar > items) and you can include more than one. _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
