Jump to content

greedist

Member
  • Posts

    49
  • Joined

  • Last visited

Reputation Activity

  1. Like
    greedist reacted to vitor in Is there a workflow to search inside the figma?   
    Being searchable is functionality that Figma itself would have to provide. Because it is an Electron app, it is unlikely it provides something like that. Unless you’d just want find menu bar items, in which case @Benzi’s Menu Bar Search workflow should do it.
     
  2. Like
    greedist got a reaction from vitor in Making Python 2 Workflows work on macOS Monterey 12.3 and above   
    Thank you!
    As you said, I will inform the developer of the issue. 😄
  3. Like
    greedist reacted to Andrew in Run NSAppleScript feature is not working   
    @greedist you can simplify the AppleScript a bit to:
     
    on alfred_script(q) tell application "Reminders" delete (reminders whose completed is true) quit end tell end alfred_script  
    Then check that Alfred has permissions checked for reminders in macOS Automation prefs in both:
     
    macOS Prefs > Security & Privacy > Privacy > Reminders  
    and
     
    macOS Prefs > Security & Privacy > Privacy > Automation > Alfred > Reminders  
    Cheers,
    Andrew
  4. Thanks
    greedist reacted to deanishe in Run JavaScript on Safari   
    You need to remove the javascript: scheme and URL-decode it:
    const q=escape(location.href);location.href='https://papago.naver.net/website?locale=ko&source=auto&target=ko&url='+q;
    The full AppleScript to run that JS in the active tab is therefore:
    tell application "Safari" to do JavaScript "const q=escape(location.href);location.href='https://papago.naver.net/website?locale=ko&source=auto&target=ko&url='+q;" in front document  
×
×
  • Create New...