Re: Error resolving references
Re: Error resolving references
- Subject: Re: Error resolving references
- From: John Delacour <email@hidden>
- Date: Fri, 13 Sep 2002 10:29:07 +0100
At 2:35 pm +1000 13/9/02, Steven Angier wrote:
property propList : {record1:{a:1, b:2}}
set theRef to a reference to a of record1 of propList
set contents of theRef to 999
return propList
--> {record1:999}
Whoops! Where is my data!?!
property propList : {record1:{a:1, b:2}}
set varRef to a reference to a of (a reference to record1 of propList)
set contents of varRef to 999
propList
--> {record1:{a:999, b:2}}
JD
_______________________________________________
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.