How can I make moving to Home "smoother"?

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #1
A beta tester listed this as an issue:

"My biggest problem so far is when I'm navigating to and from the Home screen. The transition has no smoothness and it also takes about 2 seconds. When in 'Movies' and returning to 'Home' (pressing esc) I see the Video-backdrop for about 1-2 secs before being returned to the Home screen."

I have looked and I have a window open and close animation set to fade in but it doesnt happen smoothly?

What file should I have the animation in to make moving to and from the home screen a smoother transition?
find quote
Jezz_X Offline
Team-XBMC Skinner
Posts: 5,263
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #2
remove the recently added python script probably or don't run it when you enter home

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #3
Jezz_X Wrote:remove the recently added python script probably or don't run it when you enter home

It runs when XBMC is started how do I check if it is running when entering home? Here is how it is in home.xml. (should look familiar to you Jezz) Wink

Code:
<include condition="Skin.HasSetting(homepageHideRecentlyAdded)">HomeRecentlyAddedInfo</include>

            <control type="button" id="8999">
                <description>Run Recently added</description>
                <posx>-20</posx>
                <posy>-20</posy>
                <width>1</width>
                <height>1</height>
                <label>-</label>
                <font>-</font>
                <onfocus>XBMC.RunScript(special://skin/scripts/RecentlyAdded.py,limit=8&amp;totals=True&amp;albums=True&amp;unplayed=True)</onfocus>
                <onfocus>SetFocus(9000)</onfocus>
                <texturenofocus>-</texturenofocus>
                <texturefocus>-</texturefocus>
                <visible>Skin.HasSetting(homepageHideRecentlyAdded)</visible>
            </control>
            <control type="button" id="8999">
                <description>Don't run Recently added</description>
                <posx>-20</posx>
                <posy>-20</posy>
                <width>1</width>
                <height>1</height>
                <label>-</label>
                <font>-</font>
                <onfocus>SetFocus(9000)</onfocus>
                <texturenofocus>-</texturenofocus>
                <texturefocus>-</texturefocus>
                <visible>!Skin.HasSetting(homepageHideRecentlyAdded)</visible>
            </control>
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,921
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #4
Check out this post -

http://forum.xbmc.org/showthread.php?p=3...post394295

[Image: sig_zps3af3b48e.jpg]
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #5
Hitcher Wrote:Check out this post -

http://forum.xbmc.org/showthread.php?p=3...post394295

Made all changes and the delay still stands.
find quote
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #6
Do you know that recently added is the cause?

What happens where if you disable it, if you have a setting...Or just outright delete the recently added code do you still have the same behavior?

[Image: widget]

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
find quote
igotdvds Offline
Skilled Skinner
Posts: 1,616
Joined: Jul 2009
Reputation: 11
Post: #7
mcborzu Wrote:Do you know that recently added is the cause?

What happens where if you disable it, if you have a setting...Or just outright delete the recently added code do you still have the same behavior?

I turned it off and I still get the delay.
find quote
Jezz_X Offline
Team-XBMC Skinner
Posts: 5,263
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #8
then its probably your animation code the window is waiting for a animation to finish before it closes

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote