Page 1 of 1

Problem thive transition card

Posted: Tue Oct 11, 2011 11:31 am
by ferrandjames
hello, I have a concern that I understand it, before the update of the software, I had the problem of transition, but now when I use the code:

Code: Select all

on mouseUp
       lock screen
       go stack "News"
       unlock screen with visual effect push left
end mouseUp
It gives the impression that the card passes twice on each other ...
how to fix this?
thank you in advance

Re: Problem thive transition card

Posted: Tue Oct 11, 2011 11:45 am
by Jellicle
Not sure I understand your problem but the lock screen command has changed as of version 5.0. Use

Code: Select all

  lock screen for visual effect
instead.

Gerry

Re: Problem thive transition card

Posted: Tue Oct 11, 2011 2:03 pm
by Klaus
Hi friends,

visual effects ONLY work from card to card (or show/hide objects) but NOT from stack to stack!
And I don't think that this has changed in version 5.0, although I would love to be wrong here :D


Best

Klaus

Re: Problem thive transition card

Posted: Tue Oct 11, 2011 9:17 pm
by gpb01
Klaus wrote:Hi friends,
visual effects ONLY work from card to card (or show/hide objects) but NOT from stack to stack!
And I don't think that this has changed in version 5.0, although I would love to be wrong here :D

Best

Klaus
Hi Klaus,
on relase notes and on all documentation, is written what you say, but ...
... but this seems not be always completely true :)

Just in these days I'm trying to understand the operation of "visual effects" on iOS (... I'm quite begginer) and I discovered that :

1. visual effect "push right" followed by open stack "mySecondStack" work fine if the stack "mySecondStack" is not already opened

2. If, from the second stack, you go back using the statement go back ... still the visual effect work, but if you use the go stack "myPrimaryStack", the visual effect does not occur.

3. If, after the point 2. you try againg open stack "mySecondStack" ... the visual effect does not occur, but if you prepone a close stack "mySecondStack" followed by the open stack "mySecondStack", the effect appears ... confirming the hypothesis that only works when you open a stack ...

What I can imagine is that, opening a closed stack, open also the first card on the stack so ... the visual effect is triggered but ... why the different behavior between the go back and the go stack "myPrimaryStack" when I go back ?

Guglielmo