I want to begin studying AppleScript.
I wish to add to my workflow a counter that may maintain monitor of the quantity of PDFs i create for a job and maintain a tally of these paperwork. I can then overlook about this file till it is time for evaluate and I’ve a concrete show of my productiveness. Ideally I would really like a “droplet” I can have within the dock so I can drag my work recordsdata on the app and generate a listing over time.
Is there a easy script i could make an utility out of in automator that may ship the title (or a rely) of no matter is dropped onto it right into a txt file of some type?
EDIT:
I aped this and it seems to be promising nevertheless it stays at “1” each time i exploit it:
increment()
on increment()
set currentCount to currentCount + 1
show dialog "Rely is now " & currentCount & "."
finish increment
How do I maintain it going?