Animation Zoom effect
#1
Could someone explain the end="#,#,#,#" setting for me?

It appears to be "x,y,w,h", but only "y,w,h" are working for me.

Code:
<animation effect="zoom" end="680,116,12,391" time="0" condition="Control.IsVisible(51)">Conditional</animation>

I want to move and size a scrollbar, If I add an additional animation effect slide, I can move it horizontally, but is that necessary?

Code:
<animation effect="slide" time="0" end="155,0" condition="Control.IsVisible(51)">Conditional</animation>

from:
Code:
<posx>525</posx>
<posy>116</posy>
<width>12</width>
<height>200</height>
to:
Code:
<posx>680</posx>
<posy>116</posy>
<width>12</width>
<height>391</height>
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#2
<animation effect="zoom" end="680,116,12,391" time="0" condition="Control.IsVisible(51)">Conditional</animation>

That looks right to me.
Reply
#3
Thanks, so it is "x,y,w,h".

I Just tested, it works fine in the skinning engine, so it must be another WindowXML Bug.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply

Logout Mark Read Team Forum Stats Members Help
Animation Zoom effect0