Re: AppleWorks scripting - database question
Re: AppleWorks scripting - database question
- Subject: Re: AppleWorks scripting - database question
- From: "Paul F. Henegan" <email@hidden>
- Date: Sun, 28 Jul 2002 07:22:45 -0400
on 27.07.2002 13:47, Bruce M. Axtens at email@hidden wrote:
>
Dear List
>
>
In the following code I am trying to make the selected record appear on my
>
screen but using "select" only selects it, it doesn't move the record into
>
view. How do I move the record into view?
<snip>
>
tell record i
>
if value of field "Job Name" = jumpLoc then
>
select record i
>
exit repeat
>
end if
>
end tell
Hi Bruce,
Try this:
tell record i
if value of field "Job Name" = jumpLoc then
activate
exit repeat
end if
end tell
HTH,
paul
--
Paul F. Henegan
<email@hidden>
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.