Need help in skin modding (1 Viewer)

badboyxx

Portal Pro
June 15, 2012
728
97
Home Country
Germany Germany
I have changed a few things in my skin and have it almost how i want it. Now I have a few problems and do not come on.

1. in detailview I want to show the 3D-logo for 3D movies. At the beginning it should show the logo and then keep it a few seconds, after that it should rotate 360 degrees clockwise around its own axis, then delay a few seconds again and rotate back 360 degress. This steps should always repeat until a 3D movie is focused. When I switch to a non 3D movie it should not show the logo and switching back to a 3D movie should show the rotating logo again but start from the first step (delay, rotate clockwise, delay and rotate back...).

Here is my xml-text:
Code:
    <control>
      <description>3D Movie</description>
      <type>image</type>
      <id>78</id>
      <posX>820</posX>
      <posY>955</posY>
      <width>96</width>
      <height>48</height>
      <texture flipY="true" diffuse="Thumb_Mask.png">Logos\MediaInfo\Graphical\Video\#MovingPictures.LocalMedia.is3d.png</texture>
      <visible>control.isvisible(50)+facadeview.smallicons</visible>
      <animation effect="rotatey" end="360" delay="3000" center="868,0" time="4000" tween="bounce" reversible="false" condition="control.hasfocus(50)+facadeview.smallicons">conditional</animation>
      <animation effect="rotatey" end="-360" delay="10000" center="868,0" time="4000" tween="bounce" reversible="false" condition="control.hasfocus(50)+facadeview.smallicons">conditional</animation>
      <animation effect="fade" time="250" delay="0">WindowClose</animation>
    </control>


2. in small- and big thumbview I have the movie covers added a case. The problem now is that I can't change the size of the case. I think there is a specific argument herefore.

small_thumbview.jpg

It should look like this

small_thumbview_ok.jpg


When the hidden menu is opened, the case gets into the background of the movie cover. I don't know why MP this does. Perhaps someone has a solution herefore.

small_thumbview_hiddenmenu.jpg


Here is my xml-code for small- and bigthumbview:
Code:
      <control>
        <description>Thumbnail Panel</description>
        <type>thumbnailpanel</type>
        <id>50</id>
        <unfocusedAlpha>ff</unfocusedAlpha>
        <onleft>3</onleft>
        <onright>3</onright>
        <posX>45</posX>
        <posY>63</posY>
        <width>1905</width>
        <height>1005</height>
        <!-- Small Icons -->
        <itemWidth>150</itemWidth>
        <itemHeight>217</itemHeight>
        <textureWidth>160</textureWidth>
        <textureHeight>230</textureHeight>
        <thumbWidth>135</thumbWidth>
        <thumbHeight>202</thumbHeight>
        <thumbPosX>7</thumbPosX>
        <thumbPosY>7</thumbPosY>
        <!-- Large Icons -->
        <textureWidthBig>228</textureWidthBig>
        <textureHeightBig>319</textureHeightBig>
        <itemWidthBig>226</itemWidthBig>
        <itemHeightBig>316</itemHeightBig>
        <thumbWidthBig>204</thumbWidthBig>
        <thumbHeightBig>294</thumbHeightBig>
        <thumbPosXBig>12</thumbPosXBig>
        <thumbPosYBig>12</thumbPosYBig>
        <frameFocus>Logos\MediaInfo\Graphical\Cases\#MovingPictures.LocalMedia.videoresolution_case.png</frameFocus>
        <frameFocusBig>Logos\MediaInfo\Graphical\Cases\#MovingPictures.LocalMedia.videoresolution_case.png</frameFocusBig>
       <font>font12</font>
        <suffix>|</suffix>
        <thumbZoom>no</thumbZoom>
        <enableFocusZoom>no</enableFocusZoom>
        <keepaspectratio>no</keepaspectratio>
        <!-- Spin Controls -->
        <spinWidth>75</spinWidth>
        <spinHeight>55</spinHeight>
        <spinPosX>1762</spinPosX>
        <spinPosY>1021</spinPosY>
        <spinAlign>Right</spinAlign>
        <spinColor>ff006698</spinColor>
        <textureUp>arrow_round_up_nofocus.png</textureUp>
        <textureDown>arrow_round_down_nofocus.png</textureDown>
        <textureUpFocus>arrow_round_up_focus.png</textureUpFocus>
        <textureDownFocus>arrow_round_down_focus.png</textureDownFocus>
      </control>

Please help me or I'll go crazy
 

badboyxx

Portal Pro
June 15, 2012
728
97
Home Country
Germany Germany
:mad: Aaaahhhh

I think I have to let this modifications be.

Ltfearme do you know how I can add double animations? E. g. slide right and after that slide again right.
 

ltfearme

Community Plugin Dev
  • Premium Supporter
  • June 10, 2007
    6,751
    7,196
    Sydney
    Home Country
    Australia Australia
    Just add a delay to the second animation I guess, with skinning you just have to be patient and keep tinkering.
     

    badboyxx

    Portal Pro
    June 15, 2012
    728
    97
    Home Country
    Germany Germany
    I have added the following:

    Code:
      <control>
          <description>Rotating Movie disc</description>
          <type>image</type>
          <id>0</id>
          <posX>80</posX>
          <posY>455</posY>
          <width>579</width>
          <height>525</height>
          <texture>#MovingPictures.DVDArt\#MovingPictures.SelectedMovie.imdb_id.png</texture>
          <keepaspectratio>yes</keepaspectratio>
          <visible>facadeview.list+control.isvisible(50)+Control.HasThumb(90)</visible>
          <animation effect="fade" time="250" delay="0">WindowClose</animation>
          <animation effect="slide" start="-125" end="0" time="2500" delay="600" tween="back" reversible="false">visible</animation>   
          <animation effect="slide" start="0" end="205" time="2000" delay="3200" tween="back" reversible="false">visible</animation>
          <animation effect="rotate" end="-360" centre="475,258" time="8000" loop="true" condition="true">Conditional</animation>
        </control>

    That is the problem, I can't get two same animations working together. The first slide animation doesn't appear, only the second starts. If I exclude the second slide animation, the first is working well. What is wrong?

    I want to slide the case and the disc to the right from left out of the screen into the screen. The disc should be a little bit visible right of the case during the animation. After that the disc shell slide out of the case and begin with the spinning.
     

    Users who are viewing this thread

    Top Bottom