Seem to remember that you can nest arrays as much as you want, and am
working under the assumption that custom properties are basically nested
arrays attached to objects.

Not sure if either of these assumptions are correct, perhaps the script I am
working on will help clarify the syntax/conceptual problem:


on setLineTextOf  someLine, displayFldName, textToSave
  -- version MetaCard
  put textToSave into fldArray[someLine]
  put fldArray into opnArray[displayFldName]
  put opnArray into cardPropertyArray["opn_menuField"]
  
  set the customProperties of this card to cardPropertyArray
end setLineTextOf

function getLineTextOf  someLine, displayFldName
  put the customProperties of this card into cardPropertyArray
  put cardPropertyArray["opn_menuField"] into opnArray
  put opnArray[displayFldName] into fldArray
  put fldArray[someLine] into someText
  
  return someText
end getLineTextOf


Archives: http://www.mail-archive.com/metacard%40lists.best.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.

Reply via email to