After searches on the internet and past threads, I still have not found how to send an AppleEvent from Cocoa. I need to execute the following AppleScript command:
tell application "My App" to «event tlBTrcBK» given «class btNM»:"My Parameter"
Other than sending the event directly using Obj-C code, I also considered executing a terminal command, "osascript -e '[code]'", which I know how to do. However, in that case, I would need to know how to escape double crochets in the terminal.
Thanks for the help!