Release: Xperience 1.1 UI for XBMC Dharma (Now available via XBMC SVN)

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Mindzai Offline
Fan
Posts: 333
Joined: Aug 2010
Reputation: 0
Post: #41
Not sure a screenshot would help as it seems to be the animation that is bugging, but I'll try to make a video tonight.
find quote
KidVulcan Offline
Senior Member
Posts: 100
Joined: May 2010
Reputation: 0
Post: #42
XBMCG33K Wrote:It is just a dream Tongue

Thought soSad Still, dreaming is goodNod
find quote
paul Offline
Posting Freak
Posts: 2,772
Joined: Oct 2008
Reputation: 4
Location: Planet Earth
Post: #43
XBMCG33K Wrote:It is just a dream Tongue
Unless your planning to re release the night version, then i will release
my night version of xperience 1.1 love what you have done with it and finally
the volume bar works and looks the way it should.
As for being able to use your own avatar gamer picture on the home screen this is possible i think, i will look into this later after i complete my midnight mod it's 75% done.Cool

XBMC Frodo 12 - Windows 7 - Asrock Ion 330HT - Aeon Nox
find quote
Rocky5 Offline
Alaska Group
Posts: 564
Joined: Jun 2008
Location: Scotland
Post: #44
Mindzai Wrote:Installed this tonight from the passion-xbmc repo and it looks great except for one thing which makes it unusable - the icon in the bottom right is constantly flashing and glitching in a very buggy way. It looks like its flashing between black and white icons. Nothing like the smooth animation in the videos. Is this is a known issue?

Check for an xpr or xbt (not sure xbt works with multiimages) file in media as this will cause it to arse up the animations.

I never compress the animations, flags and custom folders.
(This post was last modified: 2010-11-04 07:31 by Rocky5.)
find quote
Bobby Blixberg Offline
Donor
Posts: 363
Joined: Apr 2009
Reputation: 1
Post: #45
ppic Wrote:have been compilatedthis night Wink

http://passion-xbmc.org/addons/?Page=Vie...rience.svn

Maybe another stupid question, but how do I add the passion-xbmc repo to XBMC?

Code:
sudo add-apt-repository ???????

EDIT: Found it:
http://wiki.xbmc.org/index.php?title=Uno...positories

MIFcom Mini-ITX ASUS ION2 | 4GB RAM | 120 GB SSD | XBMCbuntu
Philips 42PFL8684
(This post was last modified: 2010-11-04 12:08 by Bobby Blixberg.)
find quote
mstef Offline
Senior Member
Posts: 223
Joined: Jan 2010
Reputation: 0
Location: Poland
Post: #46
paul Wrote:As for being able to use your own avatar gamer picture on the home screen this is possible i think, i will look into this later ...

Hej, guys what are you talking about? Which avatar and where? I wonder because only what I think is the avatar in right top corner wich is already available in Xperience 1.1 and picture is taken from profile avatar.

AsRock 330 HT, 2GB RAM, 320GB HDD, XBMC Live Dharma 10.1, Fusion BugFix Mod, Xperience, reFocus
find quote
Rocky5 Offline
Alaska Group
Posts: 564
Joined: Jun 2008
Location: Scotland
Post: #47
to get the image you need this code and just place is in a .py file then tell the skin to load it, then its a matter of just loading the downloaded image into the skin interface.

Get avatar images script (**** = your gamertag)
Code:
import xbmc, xbmcgui, urllib
loc = urllib.URLopener()
loc.retrieve("http://avatar.xboxlive.com/avatar/****/avatar-body.png","special://skin/media/avatar.png")
loc.retrieve("http://avatar.xboxlive.com/avatar/****/avatarpic-l.png","special://skin/media/gamerpic.png")

image code to load the avatar.
Code:
<control type="image">
    <posx>100</posx>
    <posy>0</posy>
    <width>279</width>
    <height>334</height>
    <texture>avatar.png</texture>
    <aspectratio>keep</aspectratio>
    <animation type="WindowOpen" reversible="false">
    <effect type="fade" start="0" end="100" time="1000" delay="0" />
    </animation>
    <animation type="Windowclose" reversible="false">
    <effect type="fade" start="100" end="0" time="100" />
    </animation>
</control>

looks like this.
[Image: screenshot000a.th.png]
(This post was last modified: 2010-11-05 00:39 by Rocky5.)
find quote
XBMCG33K Offline
Skilled Skinner
Posts: 1,252
Joined: Dec 2008
Reputation: 4
Location: 4 8 15 16 23 42
Post: #48
Guess this means it's possible to have that show up on a panel (on home) similar to how NXE already does huh?

i meant to quote lol edited it instead, sorry.
(This post was last modified: 2010-11-05 00:45 by Rocky5.)
find quote
Rocky5 Offline
Alaska Group
Posts: 564
Joined: Jun 2008
Location: Scotland
Post: #49
XBMCG33K Wrote:Guess this means it's possible to have that show up on a panel (on home) similar to how NXE already does huh?


yup just add a visible condition.

just add this to Home.xml after the debug include and place the .py file in 720p/Scripts/ named update avatars.py

PHP Code:
<control type="image">
    <
posx>100</posx>
    <
posy>0</posy>
    <
width>279</width>
    <
height>334</height>
    <
texture>avatar.png</texture>
    <
aspectratio>keep</aspectratio>
    <
animation type="WindowOpen" reversible="false"><effect type="fade" start="0" end="100" time="1000" delay="0" /></animation>
    <
animation type="Visible" reversible="false"><effect type="fade" start="0" end="100" time="1000" delay="0" /></animation>
    <
animation type="Windowclose" reversible="false"><effect type="fade" start="100" end="0" time="100" /></animation>
    <
animation type="Hidden" reversible="false"><effect type="fade" start="100" end="0" time="100" /></animation>
    <
visible>Container(20).HasFocus(1)</visible>
</
control

now add this code to Startup.xml before the first onfocus

PHP Code:
<onfocus>RunScript(special://skin/720p/Scripts/update avatars.py)</onfocus> 

this will only show the avatar when the movies panel has focus. (so just change the hasfocus ID to another panels ID)
find quote
XBMCG33K Offline
Skilled Skinner
Posts: 1,252
Joined: Dec 2008
Reputation: 4
Location: 4 8 15 16 23 42
Post: #50
Wanna maybe make those files for me and I'll give it a test?

I'd attempt myself but editing the skin so they'll accept it on xbmc addons repo is a daunting task...
find quote
Post Reply