"Zoom" Animation Problem.
#1
Hi, could someone please show me where I am going wrong.
As you can see in the pics below , I have main menu items set to zoom on focus , but the animation code I am using only makes the icon zoom right,left and down , I can't figure out what to add into animation to get it to zoom upwards as well ?
Here's the code am using in image box in "focusedlayout" section.
<animation effect="zoom" end="120,120" time="200" condition="Control.hasFocus(9000)">Conditional</animation>
                <animation effect="slide" start="0,0" end="-20,0" time="200" condition="Control.HasFocus(9000)">Conditional</animation>
ImageImage
Reply
#2
Are you missing the center attribute?

<animation effect="zoom" end="120,120" time="200" center="auto" condition="Control.hasFocus(9000)">Conditional</animation>

or 

<animation effect="zoom" end="120,120" time="200" center="x,y" condition="Control.hasFocus(9000)">Conditional</animation>
Reply
#3
Yes , thanks for that , center="auto"  sorted it.
cheers.
Reply

Logout Mark Read Team Forum Stats Members Help
"Zoom" Animation Problem.0