Re: AppleWorks scripting - database question solved
Re: AppleWorks scripting - database question solved
- Subject: Re: AppleWorks scripting - database question solved
- From: "Bruce M. Axtens" <email@hidden>
- Date: Mon, 29 Jul 2002 10:32:58 +0500
Dear List
Solved it. Set the current record property to the record you want to go to
and the display goes there.
For example, listing all the record is the database ...
tell application "AppleWorks 6"
tell document "Database.cwk"
repeat with i from 1 to number of records
tell record i
set current record to record i
end tell
end repeat
end tell
end tell
Bruce.
_______________________________________________
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.