Jump to content

benjid

Member
  • Posts

    5
  • Joined

  • Last visited

Posts posted by benjid

  1. Could you try running this script in Terminal:

    bundleid="com.calebevans.playsong"
    
    container=""
    for f in ~/Library/Application\ Support/Alfred\ 2/Alfred.alfredpreferences/workflows/user.workflow.*/; do
        if plutil -extract bundleid xml1 "$f/info.plist" -o - | grep "$bundleid" &> /dev/null; then
            container="$f"
            break
        fi
    done
    
    if [[ "$container" = "" ]]; then
        echo 'Failed to find workflow container directory!'
        exit 1
    fi
    
    for f in "$container"/*.scpt; do
        plaintext=$(osadecompile "$f")
        # | sponge |
        echo "$plaintext" | osacompile -o "$f"
    done
    
    echo 'Recompiled scripts!'
    

    It should recompile the script file that is causing that error.

    Please report back it works.

    worked!

  2. New features sound great, but not working again:

    Starting debug for 'Play Song'
    
    [ERROR: alfred.workflow.input.scriptfilter] Code 1: execution error: Finder got an error: AppleEvent handler failed. (-10000)
    [ERROR: alfred.workflow.input.scriptfilter] Code 1: execution error: Finder got an error: AppleEvent handler failed. (-10000)
    [ERROR: alfred.workflow.input.scriptfilter] Code 1: execution error: Finder got an error: AppleEvent handler failed. (-10000)
    [ERROR: alfred.workflow.input.scriptfilter] Code 1: execution error: Finder got an error: AppleEvent handler failed. (-10000)
    
  3. Not working for me on yosemite:

    Starting debug for 'Play Song'
    
    [ERROR: alfred.workflow.input.scriptfilter] Code 1: 3726:3743: execution error: The variable artworkFolderName is not defined. (-2753)
    [ERROR: alfred.workflow.input.scriptfilter] Code 1: 3726:3743: execution error: The variable artworkFolderName is not defined. (-2753)
    [ERROR: alfred.workflow.input.scriptfilter] Code 1: 3726:3743: execution error: The variable artworkFolderName is not defined. (-2753)
    
×
×
  • Create New...