<Action> <Selection>

SCRIPT {
    if _arg1 = "Cut" then key$ = "{Ctrl+x}"
    if _arg1 = "Copy" then key$ = "{Ctrl+c}"
    if _arg1 = "Bold" then key$ = "{Ctrl+b}"
    if _arg1 = "Italicize" then key$ = "{Ctrl+i}"
    if _arg1 = "Underline" then key$ = "{Ctrl+u}"
    if _arg1 = "Delete" then key$ = "{Del}"
    SendKeys key$
}