Re: Activate menubar menu programatically?
Re: Activate menubar menu programatically?
- Subject: Re: Activate menubar menu programatically?
- From: Eric Crichlow <email@hidden>
- Date: Mon, 19 Nov 2007 12:37:22 -0700
- Thread-topic: Activate menubar menu programatically?
You can use UI scripting in Applescript to programmatically activate
your menu. It seems to work fine for me for basic menu manipulation. It
starts experiencing problems when you try to use it to manipulate other user
interface items.
...Eric Crichlow...
...Interwrite Learning...
Justin Hawkwood wrote:
I'm trying to get one of my menubar menus to show up when a specific
action is taken, but cannot seem to figure out how. I have tried the
following, but nothing happens:
NSEvent* event = [NSEvent mouseEventWithType: NSLeftMouseDown
location: NSMakePoint(100.0, 10.0)
modifierFlags: 0
timestamp: 0
windowNumber: 0
context: [NSGraphicsContext currentContext]
eventNumber: 0
clickCount: 1
pressure: 1.0];
[NSApp mouseDown:event];
I am winging most the arguments passed in to mouseEventWithType. I
have also looked for a way to cal performClick, but to no avail.
Any suggestions would be greatly appreciated.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden