I am trying to create a menubar app in OS X Yosemite that simply consists of a dropdown menu with submenus. This menu and its submenus would be populated by an applescript script.
I have found tutorials on something similar before, but they all seem to be fairly outdated and don't properly work in Xcode 6.2, such as this one:
I'm fairly experienced in Applescript, but haven't had much time to code in Objective C.
Where would be a good place to find a template of sorts for what I want to create?
I would be populating the dropdown with items gathered from a parsed shell script output. How could I do this? My current, non-menubar application populates its list as follows (stripped down example): `repeat with theItem in myInstances's items 1 through -1 ... copy {title:text item 2 of theNewItem} to end of library ... end repeat loadDataSource_(library)` Is it possible to use this method in your code as well? – yannikrock Mar 23 '15 at 16:25