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 status text ("Recor

RE: Fade effect for a Field

2014-05-16 Thread John Dixon
Set the blendLevel of fld 1 to 100 on mouseUp repeat with count = 100 down to 1 set the blendLevel of fld 1 to count wait 2 millisecs end repeat wait 2 seconds repeat with count = 1 to 100 set the blendLevel of fld 1 to count wait 2 millisecs end