Re: customPropertyless

2017-09-05 Thread Richmond Mathewson via use-livecode
Thanks Mark and Klaus both! Richmond. On 9/5/17 5:03 pm, Klaus major-k via use-livecode wrote: Hi Richmond, Am 05.09.2017 um 15:58 schrieb Richmond Mathewson via use-livecode : I have a button called "XXX" and it has 3 customProperties; "AA", "BB" & "CC" and this works very well indeed:

Re: customPropertyless

2017-09-05 Thread Klaus major-k via use-livecode
Hi Richmond, > Am 05.09.2017 um 15:58 schrieb Richmond Mathewson via use-livecode > : > > 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=" &

Re: customPropertyless

2017-09-05 Thread Mark Waddingham via use-livecode
On 2017-09-05 15:58, Richmond Mathewson via use-livecode wrote: onmouseEnter putthe customProperties of meintofld "propps" endmouseEnter The 'customProperties' property returns an array... So try: put the keys of (the customProperties of me) into fld "propps" Warmest Regards, Mark. -- M