Jump to content

bilbotron

Member
  • Posts

    3
  • Joined

  • Last visited

Posts posted by bilbotron

  1. Hello,

    I'm really new to Alfred and used to use Quicksilver. I had a script that would allow me to apply a colour label to files in finder, but cannot get it to work properly in Alfred. Does anyone have a solution they use?

    Many thanks,

    Will

     

    Here is the script I use at the moment:

     

     

    on alfred_script(q)
    tell application "Finder"
      set thisItem to selection as alias
      if label index of thisItem = 0 then
        set the label index of thisItem to 2 -- 2 = red
      else
        set label index of thisItem to 0 -- 0 = no label
      end if
    end tell
    end alfred_script
×
×
  • Create New...