I was trying to replicate "take a screenshot shortcut" (cmd+shift+3) via cocoa and scripting bridge
SystemEventsApplication * sysEvent = [SBApplication applicationWithBundleIdentifier:@"com.apple.systemevents"];
[sysEvent keyCode:20 using:SystemEventsEMdsCommandDown];
but i can't send more than one SystemEventsEMds to the method.
In applescript is as easy as
key code 20 using {command down, shift down}