Page 1 of 1

mouseEnter and Visual Effects Problems

Posted: Fri Nov 02, 2018 10:36 am
by Googie85
Hi Guys!!

I am fresh out of ideas with animating an image when a mouseEnter event is called. I dont know how to explain my situation so I have included my stack here in this post. When the mouse pointer hovers over the image I use the following:

Code: Select all

      show image "Wizard.png" with visual effect push up very fast
When I hover back and forth over ALL buttons I have to wait for the items to catch up from animating.

Anyone with any ideas?

Many Thanks,

Googie.
Forum Pic.jpg
New GUI.rar
(61.79 KiB) Downloaded 350 times

Re: mouseEnter and Visual Effects Problems

Posted: Fri Nov 02, 2018 11:49 am
by Klaus
Hi Googir,

unfotunately visual effects are blocking, so we cannot stop them, once they start to work.

But we can control the duration (depending on the effect) by setting "the effectrate". That controls the duration of the "very slow" visual effect! Yes, mentally a bit challenging, but works. :D
The "default" setting is 2000.

So you schould do some tests with different durations until it suits your needs:

Code: Select all

...
## Set the effectrate in millisecs:
set the effectrate to 300
show image "Wizard.png" with visual effect push up very slow
...
Best

Klaus