Storing script objects
Storing script objects
- Subject: Storing script objects
- From: John MacDonald <email@hidden>
- Date: Thu, 11 Jan 2001 06:50:13 -0400
Hi!
I want to build some script objects based on FileMaker data and then
use Store Script to write a file that can be used by other scripts.
When I change properties of the script they don't get written. For example:
--------
script x
property y : {}
end script
set x's y to {1, 2, 3}
store script x in ((path to desktop) as text) & "script file" with replacing
------
When I read the file, property y is set to the original {}.
Any ideas?
-John