Other than iterating through each database item using AppleScript and searching manually through it's list of tags to find abandoned tags, does anyone have any other AppleScript suggestions for how to find unused tags? Or any ideas why his Spotlight index wasn't up to date with Yojimbo's tags?

tell application "Yojimbo"
    set everyTag to every tag
    set emptyTags to {}
    repeat with aTag in everyTag
if (count of (every database item whose tags contains aTag)) is 0 then
            set emptyTags to emptyTags & {contents of aTag}
        end if
    end repeat
end tell


--
------------------------------------------------------------------
This message is sent to you because you are subscribed to
 the mailing list <yojimbo-talk@barebones.com>.
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  <http://www.listsearch.com/yojimbotalk.lasso>
Have a feature request, or not sure if the software's working correctly? Please send mail to: <[EMAIL PROTECTED]>

Reply via email to