Send Quicksilver data to FileMaker via AppleScript |
|
|
I use all kinds of FileMaker databases to manage my personal life, from expenses to recipes to writing articles. When I find something I want to add to a database, I use Quicksilver with an Applescript to pipe it over without leaving the context where I found the data. This is especially helpful when doing research.The following script could be improved upon in a number of ways, one of the most obvious being that it could open the database if it's not already open, but here it is:-- begin scriptproperty zdb : "db.fp7" -- database nameproperty ztable : "tblname" -- table where target field residesproperty zfield : "fieldname" -- field to insert text from quicksilverproperty zscript : "process quicksilver input" -- name of s...
|