Hi Richmond,

> Am 05.09.2017 um 15:58 schrieb Richmond Mathewson via use-livecode 
> <use-livecode@lists.runrev.com>:
> 
> I have a button called "XXX" and it has 3 customProperties; "AA", "BB" & "CC"
> 
> and this works  very well indeed:
> 
> onmouseEnter
> 
> put"AA=" & (theAA ofme) & cr & "BB=" & (theBB ofme) & cr & "CC=" & (theCC 
> ofme) intofld "propps"
> 
> endmouseEnter
> 
> But this does NOT:
> 
> onmouseEnter
> 
> putthe customProperties of meintofld "propps"
> 
> endmouseEnter
> 
> this is a Pain-In-the-Bum for objects that have an unknown number of 
> customProps . . .

but this DOES:
on mouseEnter
  put the customkeys of me into fld "propps"
end mouseEnter

> Richmond.

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major-k.de


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to