• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Building database in Appleworks
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Building database in Appleworks


  • Subject: Building database in Appleworks
  • From: peter boardman <email@hidden>
  • Date: Thu, 30 Jan 2003 13:13:10 +0000

I'm trying to build a database in AppleWorks. In AppleWorks I can create text fields 400-500 characters
long. But from Applescript, any attempt to create a field seems to be limited to 232 characters.

The following is a kind of test: you'll need to have an open database document first.

--
set x to ""
repeat 100 times
set x to x & "0123456789" & return
end repeat

tell application "AppleWorks 6"
if front document exists then
set theFrontDocument to (get a reference to the front document)
if theFrontDocument's document kind is database document then
copy (get a reference to (make new record in theFrontDocument)) to thisNewRecord
set value of field 1 of thisNewRecord to x
end if
end if
end tell
--

Is this a problem with my script or with Appleworks and its AS implementation?

Thanks for any help

Pete
_______________________________________________
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.

  • Prev by Date: Progress Indicator class badly displayed
  • Next by Date: Re: Address Book BUGS
  • Previous by thread: Progress Indicator class badly displayed
  • Next by thread: Frontmost document in FrameMaker...
  • Index(es):
    • Date
    • Thread