XBMC Community Forum  

Go Back   XBMC Community Forum > Help and Support > Skin Help and Support > Aeon

Aeon Subforum for the Aeon skin (and mods for/of it).

Reply
 
Thread Tools Search this Thread Display Modes
Old 2008-08-09, 16:47   #1
xbmc.01
Aeon Group
 
xbmc.01's Avatar
 
Join Date: Jul 2008
Posts: 68
xbmc.01 is on a distinguished road
Default Showcase in 'Adult' and 'Clips'?

Is it possible to add a showcase view for clips and adult?

xbmc.01 is offline   Reply With Quote
Old 2008-08-10, 17:25   #2
xbmc.01
Aeon Group
 
xbmc.01's Avatar
 
Join Date: Jul 2008
Posts: 68
xbmc.01 is on a distinguished road
Default

wow, srsly?

not even a 'RTFM' response?

I searched on google, looked through the forums, wasn't part of early Aeon discussions, i need a bit of direction ...

would really like if if someone threw me a fken bone
xbmc.01 is offline   Reply With Quote
Old 2008-08-10, 17:40   #3
Freddo
Skilled Skinner
 
Freddo's Avatar
 
Join Date: Apr 2004
Posts: 439
Freddo is on a distinguished road
Default

Are you on Xbox? If so plug in a game pad, goto adult or clips, click in the right stick and select the view types menu, where you should be able to select/deselect various views.

on PC u can just press "s" to get the same menu, and if your on xbox but don't have a game pad handy... I think you're doomed
Freddo is offline   Reply With Quote
Old 2008-08-10, 17:45   #4
Freddo
Skilled Skinner
 
Freddo's Avatar
 
Join Date: Apr 2004
Posts: 439
Freddo is on a distinguished road
Default

oh, for an edit button,

anyway, sorry I just checked this and actually it's a no-go, Showcase view just isn't available in clips or adult. Best post a feature request although I doubt you'll be the first.
Freddo is offline   Reply With Quote
Old 2008-08-10, 23:19   #5
xbmc.01
Aeon Group
 
xbmc.01's Avatar
 
Join Date: Jul 2008
Posts: 68
xbmc.01 is on a distinguished road
Default

Quote:
Originally Posted by Freddo View Post
oh, for an edit button,

anyway, sorry I just checked this and actually it's a no-go, Showcase view just isn't available in clips or adult. Best post a feature request although I doubt you'll be the first.
thanks for taking the time to respond
xbmc.01 is offline   Reply With Quote
Old 2008-08-11, 01:50   #6
chrislee149
Member
 
Join Date: Aug 2005
Posts: 66
chrislee149 is on a distinguished road
Default

I think essentially what you want is showcase view for files (as opposed to library)?
chrislee149 is offline   Reply With Quote
Old 2008-08-23, 21:37   #7
K-FleX
Member
 
Join Date: Aug 2008
Posts: 62
K-FleX is on a distinguished road
Default

I think I figured out a way for you to get this, it works fine for me but it only works under file mode obviously (because the once you switch to library it's all the same) This just turns the Adult section into another Movies section but with a link to the adult path that you set in the options.

I use this to have MOVIES (my DivX files) and HIGH DEF (my MKV files) linked straight from the home screen and can have different views in both (DivX = wall and MKV = Showcase) Haven't encountered any problems thus far

I opened up the homescrollers.xml file with wordpad and changed

Code:
<item id="12">
				<description>My Videos</description>
				<label>ADULT</label>
				<onclick>Skin.SetBool(videoadult)</onclick>
				<onclick>Skin.Reset(videomovies)</onclick>
				<onclick>Skin.Reset(videoclips)</onclick>
				<onclick>Skin.Reset(videomusic)</onclick>
				<onclick>Skin.Reset(videotv)</onclick>
				<onclick>XBMC.ActivateWindow(MyVideoFiles,$INFO[Skin.String(adultpath)])</onclick>
				<visible>Skin.HasSetting(adult)</visible>
			</item>
to

Code:
<item id="12">
				<label>HIGH DEF</label>
				<onclick>Skin.SetBool(videomovies)</onclick>
				<onclick>Skin.Reset(videotv)</onclick>
				<onclick>Skin.Reset(videoclips)</onclick>
				<onclick>Skin.Reset(videomusic)</onclick>
				<onclick>Skin.Reset(videoadult)</onclick>
				<onclick>Skin.Reset(gametrailers)</onclick>
				<onclick>Skin.Reset(movietrailers)</onclick>
<onclick>XBMC.ActivateWindow(MyVideoFiles,$INFO[Skin.String(adultpath)])</onclick>
				<visible>!Skin.HasSetting(nomovies) + !Skin.HasSetting(movielibrary)</visible>
			</item>
			<item id="12">
				<label>HIGH DEF</label>
				<onclick>Skin.SetBool(videomovies)</onclick>
				<onclick>Skin.Reset(videotv)</onclick>
				<onclick>Skin.Reset(videoclips)</onclick>
				<onclick>Skin.Reset(videomusic)</onclick>
				<onclick>Skin.Reset(videoadult)</onclick>
				<onclick>Skin.Reset(gametrailers)</onclick>
				<onclick>Skin.Reset(movietrailers)</onclick>
			<onclick>XBMC.ActivateWindow(MyVideoLibrary,movietitles)</onclick>
				<visible>!Skin.HasSetting(nomovies) + Skin.HasSetting(movielibrary)</visible>
			</item>
Hope it works for you
K-FleX is offline   Reply With Quote
Old 2008-08-24, 19:39   #8
PJ_Hooker
Member
 
Join Date: Jan 2007
Location: Wales, UK
Posts: 53
PJ_Hooker is on a distinguished road
Default

Nice - I've been trying to get this to work too.

Will give it a go when i get back to my xbox.

Cheers
PJ_Hooker is offline   Reply With Quote
Old 2008-08-26, 04:43   #9
xbmc.01
Aeon Group
 
xbmc.01's Avatar
 
Join Date: Jul 2008
Posts: 68
xbmc.01 is on a distinguished road
Default

Quote:
Originally Posted by K-FleX View Post
I think I figured out a way for you to get this, it works fine for me but it only works under file mode obviously (because the once you switch to library it's all the same) This just turns the Adult section into another Movies section but with a link to the adult path that you set in the options.

I use this to have MOVIES (my DivX files) and HIGH DEF (my MKV files) linked straight from the home screen and can have different views in both (DivX = wall and MKV = Showcase) Haven't encountered any problems thus far

I opened up the homescrollers.xml file with wordpad and changed

Code:
<item id="12">
				<description>My Videos</description>
				<label>ADULT</label>
				<onclick>Skin.SetBool(videoadult)</onclick>
				<onclick>Skin.Reset(videomovies)</onclick>
				<onclick>Skin.Reset(videoclips)</onclick>
				<onclick>Skin.Reset(videomusic)</onclick>
				<onclick>Skin.Reset(videotv)</onclick>
				<onclick>XBMC.ActivateWindow(MyVideoFiles,$INFO[Skin.String(adultpath)])</onclick>
				<visible>Skin.HasSetting(adult)</visible>
			</item>
to

Code:
<item id="12">
				<label>HIGH DEF</label>
				<onclick>Skin.SetBool(videomovies)</onclick>
				<onclick>Skin.Reset(videotv)</onclick>
				<onclick>Skin.Reset(videoclips)</onclick>
				<onclick>Skin.Reset(videomusic)</onclick>
				<onclick>Skin.Reset(videoadult)</onclick>
				<onclick>Skin.Reset(gametrailers)</onclick>
				<onclick>Skin.Reset(movietrailers)</onclick>
<onclick>XBMC.ActivateWindow(MyVideoFiles,$INFO[Skin.String(adultpath)])</onclick>
				<visible>!Skin.HasSetting(nomovies) + !Skin.HasSetting(movielibrary)</visible>
			</item>
			<item id="12">
				<label>HIGH DEF</label>
				<onclick>Skin.SetBool(videomovies)</onclick>
				<onclick>Skin.Reset(videotv)</onclick>
				<onclick>Skin.Reset(videoclips)</onclick>
				<onclick>Skin.Reset(videomusic)</onclick>
				<onclick>Skin.Reset(videoadult)</onclick>
				<onclick>Skin.Reset(gametrailers)</onclick>
				<onclick>Skin.Reset(movietrailers)</onclick>
			<onclick>XBMC.ActivateWindow(MyVideoLibrary,movietitles)</onclick>
				<visible>!Skin.HasSetting(nomovies) + Skin.HasSetting(movielibrary)</visible>
			</item>
Hope it works for you
thanks.. but i tried this out, didn't work for me... when i clicked on the new navigation element "HIGH DEF" ... it took me to my existing "Movies" directory... even after changing the path and restarting the xbox

xbmc.01 is offline   Reply With Quote
Old 2008-08-26, 12:12   #10
K-FleX
Member
 
Join Date: Aug 2008
Posts: 62
K-FleX is on a distinguished road
Default

Quote:
Originally Posted by xbmc.01 View Post
thanks.. but i tried this out, didn't work for me... when i clicked on the new navigation element "HIGH DEF" ... it took me to my existing "Movies" directory... even after changing the path and restarting the xbox

That's strange...I'm using XBMC PC Atlantis and the newest build (14) of Aeon. This should be pretty universal though.

Are you sure you set the "adult" path correctly in the Aeon settings?
K-FleX is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 15:57.


Protected by Akismet, We recommend WordPress blogs
Copyright © 2008, XBMC Project