Sorry the subject line has a max characters thing… anywho here’s the tips
- When I attempted to create a heirarchial menu I ran into a couple problems of how to do it and after figuring it out I thought I’d share…
first make the menu item that is going to represent your sub menu, create the menu for the sub menu, attach it, and then add items to the sub menu:
set trunk to make new menu item at the end of the menu items of theRootMenu with properties {title:"Mother"}
set branch to make new menu at the end of items -- *
set trunk's sub menu to branch
set leaf to make new menu item at the end of the menu items of the sub menu of trunk with properties {title:"Daughter"} --**
- you need somewhere to make the item, and for me it didn’t work to say at the sub menu of the menu item or creating a menu of theRootMenu or some such thing… also you can give the menu a title, but it won’t be seen anywhere
** I couldn’t make the sub menu’s item with saying: “make new menu item at the end of the menu items of branch” You need to say “the sub menu of the trunk”…
- I figured out how to make targets depend on each other, which helps with my plug-ins tip, in that you don’t have to worry about build order. Select the main application’s target in “groups & files” get it’s info, (?I) and click the plus button. Select the target dependancies and click add.