Re: Using variables to target my own newly scriptable app
Re: Using variables to target my own newly scriptable app
- Subject: Re: Using variables to target my own newly scriptable app
- From: Michelle Steiner <email@hidden>
- Date: Thu, 2 Feb 2006 11:24:28 -0700
On Feb 2, 2006, at 4:36 AM, Philip Dow wrote:
Here is the problem. The following code works just fine:
tell application "Journler"
set the displayed entry of the last tab to (the second entry of
the active journal)
end tell
whereas this code does not:
tell application "Journler"
tell active journal
set anEntry to (the second entry)
end tell
set the displayed entry of the last tab to anEntry
end tell
Try this change to the second example:
tell application "Journler"
tell active journal
set anEntry to (the second entry)
set the displayed entry of the last tab to anEntry
end tell
end tell
--
"Growth for the sake of growth is the ideology of the cancer cell."
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden