Using AppleScript or Automator to create custom data entry
iMac, Mac OS X (10.6.1), 27-inch, 3.06GHz
iMac, Mac OS X (10.6.1), 27-inch, 3.06GHz
display dialog "What is your weight this morning, kind sir or madam?" default answer "10000"
set theWeight to text returned of the result as integer
set theDate to date string of (current date)
set theText to theDate & tab & theWeight & return
set fp to open for access alias "path:to:datafile.txt" with write permission
write theText to fp starting at (get eof fp) + 1
close access fp
If I add my existing data to MySQL, can you recommend a free/low-cost interface to handle the updates and graphing? It doesn't need to be anything fancy.
Using AppleScript or Automator to create custom data entry