OF2 script not working after update (12/7)

I was using the script below (not mine) and up to yesterday it was working. After the new release it stopped working. Script is supposed to move a selected email form Apple mail to OF2 inbox after a key sequence. Anyone have an idea of why it may have stopped working?

– Send currently selected Mail.app message to OmniFocus 2 quick entry box, then archive it
tell application “Mail”
set theSelectedMessages to selection
set the selected_message to item 1 of the theSelectedMessages
set message_id to the message id of the selected_message
set my_subject to the subject of the selected_message
set my_body to the content of the selected_message
– Set the task to contain the message link and the body of the email
set message_url to “message://%3c” & message_id & “%3e” & my_body
set _mb to mailbox of selected_message
set _acct to account of _mb
set _archive_box to _acct’s mailbox “Archive”
tell application “OmniFocus”
tell quick entry
– Create the task with the name and the email and the
make new inbox task with properties {name:my_subject, note:message_url}
– make new inbox task with properties {name:my_subject, note:my_body}
–open
save
end tell
– tab into subject pane
–tell application “System Events”
–keystroke tab
–end tell
end tell
– move selected_message to _archive_box
end tell

I think i found the issue - Does not appear to be a problem with the script but the keyboard shortcuts I had set dont work anymore (Yosemite).