Re: Fade effect for a Field

2014-05-16 Thread Devin Asay
On May 16, 2014, at 6:49 AM, Pascal Lehner wrote: > Hi all, > Thanks for the quick answers. I will give them a try. > I just found another solution that seems even smaller but less configurable. > > hide field id 1012 with dissolve > > show field id 1012 with dissolve > > Here: > https://site

Re: Fade effect for a Field

2014-05-16 Thread Pascal Lehner
Hi all, Thanks for the quick answers. I will give them a try. I just found another solution that seems even smaller but less configurable. hide field id 1012 with dissolve show field id 1012 with dissolve Here: https://sites.google.com/a/pgcps.org/livecode/home/disappearing-objects Now I just n

Re: Fade effect for a Field

2014-05-16 Thread Mark Schonewille
Hi Pascal, You need this: on fadeControl theLongID repeat with x = 100 down to 0 with messages set the blendLevel of theLongID to x wait 1 millisec with messages end repeat wait 2 seconds with messages repeat with x = 0 to 100 with messages set the blendLevel of theLongID to

Re: Fade effect for a Field

2014-05-16 Thread dunbarx
Hi. Easy. Check out the "blendLevel" property in the dictionary. Craig Newman -Original Message- From: Pascal Lehner To: How to use LiveCode Sent: Fri, May 16, 2014 8:39 am Subject: Fade effect for a Field Hi all, I want to make a field displaying some s

RE: Fade effect for a Field

2014-05-16 Thread John Dixon
repeat end mouseUp > From: tat...@gmail.com > Date: Fri, 16 May 2014 14:38:35 +0200 > Subject: Fade effect for a Field > To: use-livecode@lists.runrev.com > > Hi all, > > I want to make a field displaying some status text ("Record saved") that > fades f

Fade effect for a Field

2014-05-16 Thread Pascal Lehner
Hi all, I want to make a field displaying some status text ("Record saved") that fades from invisible to visible, stays for a few seconds and then fades out again. I have seen that there seems to be a way to do this with groups, but could I also do it with a single field? Thanks, Pascal ___