Hello

This a small action apple script that I use to get the length of any text I 
have, in case someone would like to use it

Thanks



*using terms from* *application* "Quicksilver"

*on* *process text* str

*set* results *to* " Characters: " & (*count* *characters* *of* str) & "

 Words: " & (*count* *words* *of* str) & "

 Lines: " & (*count* *paragraphs* *of* str)

*return* results -- return a string

*end* *process text*

 --This handler may be omitted if the action accepts all direct object 
types.

*on* *get direct types*

(* Possible values to return can include any of: 

        "NSFilenamesPboardType"

        "NSStringPboardType"

        "Apple URL pasteboard type"

        "QSFormulaType"

        "qs.process"

        "qs.command"

        "QSRemoteHostsType"

        "com.apple.itunes.track" 

    See http://qsapp.com/wiki/AppleScript_Types for details. *)

*return* {"NSStringPboardType", "Apple URL pasteboard type"}

*end* *get direct types*

*end* *using terms from*

-- 
You received this message because you are subscribed to the Google Groups 
"Quicksilver" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/blacktree-quicksilver.
For more options, visit https://groups.google.com/d/optout.

Reply via email to