Jump to content

Jack Musick

Member
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Jack Musick

  1. 5 hours ago, Empyreal said:

    Are you accidentally keeping the shift key pressed while the workflow is running?  That might do it.

     

     

    Nope. It's some kind of macOS bug. I ended up fixing it by adjusting the underlying Apple Script to this:

     

    on alfred_script(q)
      set chars to count (get the clipboard)
    if chars > 500 then
    	do shell script "afplay /System/Library/Sounds/Funk.aiff"
    else
    	tell application "System Events"
    		set _index to 1
    		repeat with letter in (get the clipboard)
    			keystroke letter
    			delay 5.0E-4
    		end repeat
    	end tell
    end if
    end alfred_script

    I've been using it just fine since.

    Alfred_Preferences.png

×
×
  • Create New...