tell application "System Events"
  if not (exists application process "Microsoft PowerPoint") then
    error "PowerPoint not running"
  end if
end tell
tell application "Microsoft PowerPoint"
  activate

  tell application "System Events"
    keystroke "e" using {shift down}
  end tell

end tell
