CoverFlow Animation
#1
Star 
Hi,

just starting playing around by modding the transparency! cover flow view to fit into the shade skin.

that's what i've got so far:

Image

problem is that i couldn't manage to get the animation to work properly and i would guess that this is caused by a bad <visible> tag somwhere in here


Code:
<control type="group" id="7001"> <!--Move to right-->
            <include>Window_OpenClose_Animation</include>
            <visible>Control.IsVisible(55) + Container.OnNext</visible>
            <control type="group"><!--left side-->
                <posx>0</posx>
                <posy>360</posy>            
                <camera x="640" y="580"/>
                <visible>Control.IsVisible(55) + Container.OnNext</visible>
                <animation effect="slide" end="-100,10" time="250" reversible="false">Hidden</animation>
                <control type="group"><!--Item -5-->
                    <posx>58</posx>
                    <visible>Container.OnNext</visible>
                    <animation reversible="false" type="fade" start="100" end="0" time="250">Hidden</animation>
                    <animation type="rotatey" center="62" start="-45" end="-45" time="0" condition="true">Conditional</animation>
<control type="image">
                        <posx>4</posx>
                        <posy>90</posy>
                        <width>248</width>
                        <height>248</height>
                        <bordersize>4</bordersize>
                        <texture fallback="DefaultAlbum.png" background="true" diffuse="Shade\posterdiffuse.png">$INFO[ListItem(-5).Thumb]</texture>
                        <visible>[Container.Content(Albums) | Container.Content(Songs)] + !stringcompare(ListItem(-5).Label,..)</visible>
                    </control>
                </control>
                <control type="group"><!--Item -4-->
                    <posx>158</posx>
                    <animation effect="rotatey" center="162" start="-45" end="-45" time="0" condition="true">Conditional</animation>
<control type="image">
                        <posx>4</posx>
                        <posy>80</posy>
                        <width>248</width>
                        <height>248</height>
                        <bordersize>4</bordersize>
                        <texture fallback="DefaultAlbum.png" diffuse="Shade\posterdiffuse.png" background="true">$INFO[ListItem(-4).Thumb]</texture>
                        <visible>[Container.Content(Albums) | Container.Content(Songs)] + !stringcompare(ListItem(-4).Label,..)</visible>
                    </control>
</control>
</control>

anybody who can give me a hint or even solve my problem?
Reply
#2
Look at the view tag at the top of MyVideoNav.xml

and if 55, as in Control.IsVisible(55), is taken switch it to another id...
Image

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
Reply
#3
mcborzu Wrote:Look at the view tag at the top of MyVideoNav.xml

and if 55, as in Control.IsVisible(55), is taken switch it to another id...

that shouldn't be the problem. I'm currently working in transparency! and have just edited the coverflow view in there. everything is working ok, except that OnNext wouldn't show me the "moving" covers from right to left. haven't touched the move animation for On.Previous and that is displaying fine - except that the covers are to big, they are moving on the same height and it is one cover missing - but it's still working.

but thanks for the reply - could be definetly become a problem if i will move the completed view over to Shade, so thanks for that
Reply

Logout Mark Read Team Forum Stats Members Help
CoverFlow Animation0