Anything beyond the basics in using the LiveCode language. Share your handlers, functions and magic here.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
paulclaude
- Posts: 121
- Joined: Thu Mar 27, 2008 10:19 am
Post
by paulclaude » Tue Mar 24, 2009 12:23 pm
Hi,
I've a stack with a windowshape image.
Every time I apply a visual effect (card transitions, objects transitions), at the end of the visual effect the stack seems to have a little flash from behind.
For example:
Code: Select all
on aboutSplash how
if how is "on" then
lock screen
show group "Startup"
unlock screen with push down
else
lock screen
hide group "Startup"
unlock screen with push up
end if
end aboutSplash
also this simple script gives this flickering effect at the end.
Any suggestion?
Paul
-
paulclaude
- Posts: 121
- Joined: Thu Mar 27, 2008 10:19 am
Post
by paulclaude » Thu Apr 09, 2009 2:08 pm
Thank you, Bernard, but the workaround gives me an error:
Message execution error:
Error description: Chunk: error in object expression
and it seems unusable in card transition (I've tried some variation).
Anyway, I will vote for this bug on quality center.
-
Bernard
- Posts: 351
- Joined: Sat Apr 08, 2006 10:14 pm
Post
by Bernard » Fri Apr 10, 2009 11:10 am
Hi, I'm terribly sorry, I made a typo in my example. It should have been:
show group with visual effect push down
There are various ways to specify transitions with visual effects. For example, with cards once can say:
go card 2 visual effect push down
I just had a look in the Dictionary, and for some strange reason the above modification to the 'go' command is not mentioned.
I hope that might be of some help.
-
edljr
- VIP Livecode Opensource Backer

- Posts: 56
- Joined: Sun Oct 26, 2008 6:47 am
-
Contact:
Post
by edljr » Mon Apr 13, 2009 5:21 pm
Hi Paul,
I experienced unwanted flickering in a recent application. I had gifs as glow effects that were displayed when the mouse-within condition was true. Adjusting the layers of the image and the gif resolved my problem. I am not sure if this is similar to your issue.
Ed
-
paulclaude
- Posts: 121
- Joined: Thu Mar 27, 2008 10:19 am
Post
by paulclaude » Tue Apr 14, 2009 1:05 pm
Hi Bernard,
the
go card 2 visual effect push down
seems to work like
go card 2
visual effect push down
but the problem persists, at least on stacks with a windowshape image, also using your tip.
Ed: no, my problem is a simple card transition problem.
-
paulclaude
- Posts: 121
- Joined: Thu Mar 27, 2008 10:19 am
Post
by paulclaude » Wed Apr 29, 2009 2:31 pm
Updated news:
the flickering problem seems to appear only if the "shadow" stack property is set to true.
Cheers
Paul