Hi Fermin,
Fermin wrote:It works very well. Thank you very much.
It would be great if instead of those words (slow, very slow, etc) could use a numeric value but I guess LiveCode not allow that.
Anyway, I say thank you both.
LC DOES in fact allow this, check "the effectrate" in the dictionary.
This manages the exact time in millisecs that a "very slow" effect will take!
Yes, the "very slow" effect, which is a bit mentally challenging
Code: Select all
...
lock screen
## We want a duration for our visual effect of 300 millisecs
set the effectrate to 300
## Or whatever should happen with a visual effect
show img "an image"
unlock screen with visual dissolve very slow
...
Best
Klaus