On Jan 18, 2008, at 12:38 PM, Jim DeVona wrote:
-- find existing note
set mynote to first note item whose name is mytitle
if mynote is missing value then
-- create a new note
set mynote to (make new note item with properties ¬
On Jan 18, 2008 2:40 PM, Alan German [EMAIL PROTECTED] wrote:
On Jan 18, 2008, at 2:24 PM, Jim DeVona wrote:
On Jan 18, 2008 1:00 PM, Alan German [EMAIL PROTECTED]
wrote:
On Jan 18, 2008, at 12:38 PM, Jim DeVona wrote:
-- find existing note
set mynote to first note item
On Jan 18, 2008 1:00 PM, Alan German [EMAIL PROTECTED] wrote:
On Jan 18, 2008, at 12:38 PM, Jim DeVona wrote:
-- find existing note
set mynote to first note item whose name is mytitle
if mynote is missing value then
-- create a new note
For some time I have been saving web pages, primarily receipts, to
Yojimbo from Firefox via the Print menu. Of late I've found that this
does not yield a 'proper' pdf but rather the text only (and generally in
very small font size too). I can however 'Save as PDF' from the Print
menu and drag the
On Jan 18, 2008, at 2:24 PM, Jim DeVona wrote:
On Jan 18, 2008 1:00 PM, Alan German [EMAIL PROTECTED]
wrote:
On Jan 18, 2008, at 12:38 PM, Jim DeVona wrote:
-- find existing note
set mynote to first note item whose name is mytitle
if mynote is missing value then
Hey,
I'd like to use Yojimbo to keep a daily work diary. To make it easier,
I'd like to set up an applescript that will create the title of the
diary entry (based on today's date) and either (a) find the entry if
it already exists or (b) create a new entry if it does not.
I've figured
For some time I have been saving web pages, primarily receipts, to
Yojimbo from Firefox via the Print menu. Of late I've found that this
does not yield a 'proper' pdf but rather the text only (and generally in
very small font size too). I can however 'Save as PDF' from the Print
menu and drag the
How's this?
tell application Yojimbo
set mytags to {QLogic, Diary}
set mytitle to date string of (current date)
-- find existing note
set mynote to first note item whose name is mytitle
if mynote is missing value then
--