PDA

View Full Version : New "'ClearArt" spinoffs to make a flag for use of it in TV Shows and maybe Movies...


reaven
2009-06-19, 20:38
Brainstorming to make flags for use at TV Shows levels and season specific Flags at season level all based on the new "ClearArt (http://xbmc.org/forum/showthread.php?t=51705)" concept.

Everything could change (position, size, and/or form, etc.)...
http://i93.photobucket.com/albums/l66/reavenm/Logocopy.png


http://i43.tinypic.com/25s0w11.jpg


http://i40.tinypic.com/dztr93.jpg


http://i39.tinypic.com/24wsh7t.jpg


http://i42.tinypic.com/p41ex.jpg

http://i41.tinypic.com/2wm27i1.jpg

DuMbGuM
2009-06-19, 22:50
Ok, from what we've discussed, here is a photoshop mockup of how I see this working in my head :p

Using my mod heres how it would look:

http://i43.tinypic.com/25s0w11.jpg


Closeup:


http://i39.tinypic.com/20q1d13.jpg

I think it's achievable.


Also made that logo for ya.. can change stuff on it if you don't like something no problem. :)

http://i39.tinypic.com/2m68jeb.png

Imaginos
2009-06-20, 00:41
great !
your logo is cool !
it will soon be used on the website I'm working on...

reaven
2009-06-20, 01:00
lol, nice !!

I like it

reaven
2009-06-20, 01:02
can change stuff on it if you don't like something no problem
maybe the caps, make the c small

reaven
2009-06-20, 01:07
Hello !
I come with a little idea...
what about making seasons specific cleararts ?
The code would look like :

<control type ="image">
<posx>1049</posx>
<posy>-176</posy>
<width>230</width>
<height>184</height>
<texture>cleararts/$INFO[VideoPlayer.TVShowTitle].season$INFO[VideoPlayer.season].png</texture>
<aspectratio align="right" aligny="bottom">keep</aspectratio>
<visible>VideoPlayer.Content(episodes) + Skin.HasSetting(episodecoveronseekbar) + Skin.HasSetting(episodeclearartonseekbar)</visible>
</control>

and the file is named like this : "show_name.seasonX.png"
for example : "The simpsons.season4.png"

I like the idea but don't follow the code.. where the images are suppose to be ? in the same folder as the clearArts

DuMbGuM
2009-06-20, 01:22
Glad you like the logo, I'll pm you with a link to the .psd so you can change stuff if you want !

where the images are suppose to be ? in the same folder as the clearArts

cleararts/$INFO[VideoPlayer.TVShowTitle].season$INFO[VideoPlayer.season].png


Yup in clearArts folder with the naming style he said.

great !
your logo is cool !
it will soon be used on the website I'm working on...

Thanks ! Oh nice, look forward to seeing your site.

reaven
2009-06-20, 01:41
I ask because VideoPlayer.season dont exist ? thats why I didn't understand the code.

reaven
2009-06-20, 02:11
I will try later with some other fonts, and I didn't erase the reflection layer upss :eek:

blubb1
2009-06-20, 15:15
I just wanted to say that I'm very happy with the new ideas, that's basically my wish :) your house and terminator mockups look just hot :grin:

DuMbGuM
2009-06-20, 19:12
your house and terminator mockups look just hot :grin:

Cheers, hopefully we can make it work now :p


http://i41.tinypic.com/9lacsh.jpg


http://i41.tinypic.com/2wm27i1.jpg

mcborzu
2009-06-20, 21:36
DuMbGuM:

The two Scrubs pics above with the image as the title at the bottom, is that a mockup or do you have code for it? If code could you post it I really like that look and would like to try it with other logos to see how they look.

DuMbGuM
2009-06-20, 21:38
They are photoshop mockups of a real clearArt icon, Imaginos pretty much has the code done for it I think, just needs the position inputted and a good testing, shouldn't be long.

reaven
2009-06-20, 21:44
It just matter of decide where is going to be, the position !

DuMbGuM
2009-06-20, 21:59
I think the bottom-middle is the best, if everyone already has the show & ep name up the top.

reaven
2009-06-20, 22:06
I think the bottom-middle is the best, if everyone already has the show & ep name up the top.

I agree !

blubb1
2009-06-20, 23:45
I agree !

IMO this is the choice to go :) do you have some ideas for the arrangement and position of the coverart during the playback/pause?

reaven
2009-06-20, 23:47
IMO this is the choice to go :) do you have some ideas for the arrangement and position of the coverart during the playback/pause?

this is not the thread... !

for clearArt on paused go http://xbmc.org/forum/showthread.php?t=51705

mcborzu
2009-06-24, 22:36
I been trying myself I didnt want to just use a mockup to see if I like it I wanted to see it in action. But, ugh, are my skinning skills terrible...anyways this is what I got so far:

http://www.themurrayworld.com/misc/cleartitle/bones-test.png

http://www.themurrayworld.com/misc/cleartitle/Psych-test.png

Here my butchered code I've used:


<control type="largeimage">
<posx>545</posx>
<posy>655</posy>
<width>190</width>
<height>56</height>
<fadetime>400</fadetime>
<aspectratio>scale</aspectratio>
<texture>cleartitle/Bones.png</texture>
<visible>!Skin.HasSetting(multiplextvbigthumb) | !Container.Content(episodes)</visible>
<include>Animation_VisibleChange200</include>
</control>
<control type="image">
<posx>545</posx>
<posy>655</posy>
<width>190</width>
<height>56</height>
<fadetime>400</fadetime>
<aspectratio>scale</aspectratio>
<texture>cleartitle/Bones.png</texture>
<visible>Skin.HasSetting(multiplextvbigthumb) + Container.Content(episodes)</visible>
<include>Animation_VisibleChange200</include>
</control>


1. Have to be able to use some code like "cleararts/$INFO[VideoPlayer.TVShowTitle].png" which is used in clearart on paused to dynamically get the image.
2. Image not be unloaded at the moment
3. Still have more learning, hopefully someone with better skills can make it more efficient if not I'll keep trying.

reaven
2009-06-24, 22:44
that looks nice but why you have the same code twice with the same visible tag except one is (!)

you will only want the clearTitle to be seen when ? in episodes screen, right ?
if that so you only need this, I think.
<visible>Skin.HasSetting(multiplextvbigthumb) + Container.Content(episodes)</visible>

Have to be able to use some code like "cleararts/$INFO[VideoPlayer.TVShowTitle].png" which is used in clearart on paused to dynamically get the image.
VideoPlayer is for currently playing stuff you have to use ListItem.TVShowTitle instead, so it will be cleararts/$INFO[ListItem.TVShowTitle].png

mcborzu
2009-06-24, 22:59
Yep, "ListItem.TVShowTitle" worked. I swear I tried "ListItem.TVShowTitle" a million times I must have misspelled something somewhere when I was trying.

I want it throughout MultiplexTV it just I only have the episodes section to where I have deleted all the other bottom stuff to get it to look nice.

It's all trial and error for me, thx for the help!!

reaven
2009-06-25, 06:32
Yep, "ListItem.TVShowTitle" worked. I swear I tried "ListItem.TVShowTitle" a million times I must have misspelled something somewhere when I was trying.

hahaha, its ok thats always happen !!

Gamester17
2009-06-25, 19:45
Any chance of "'ClearArt" spinoff mods for other XBMC skins than Aeon? ???

...it is really needed if "'ClearArt" should have a chance to really make it :nod:

ronie
2009-06-25, 19:53
Any chance of "'ClearArt" spinoff mods for other XBMC skins than Aeon? ???

...it is really needed if "'ClearArt" should have a chance to really make it :nod:

Just made Transparency! v0.27 available.
It has support for both ClearArt and cdArt.

Maybe, in time, there should be a discussion on where to store the artwork / filename conventions to make this mod cross-skin compatible.

flipped cracker
2009-06-25, 20:16
i think it's silly to have the name in the top right and the bottom left. if anything, it should be just in the top right with the clear art.

Whizz
2009-06-25, 20:25
Neat idea, having the show's logo instead of the regular text. I do think though that it would look better without the cast, so just the logo.

i think it's silly to have the name in the top right and the bottom left. if anything, it should be just in the top right with the clear art.

Agreed.

Something like this:
http://img81.imageshack.us/img81/6048/xbmcmockup.png

mcborzu
2009-06-25, 20:53
I got it working for the bottom middle(home, season, episode levels) but not sure if I want it there or top right.


I would like to try to get it in other skins but 1. I only use Aeon so I'm not that motivated and 2. some skins are compressed into a .xpr so thats one more step to do. I'll try myself this weekend to get another skin going.

reaven
2009-06-25, 23:53
Any chance of "'ClearArt" spinoff mods for other XBMC skins than Aeon? ???

...it is really needed if "'ClearArt" should have a chance to really make it :nod:

Am working on MediaStream..

mcborzu
2009-07-11, 05:38
Had this finished for awhile, I'm only using Hitcher's mod, I dont use multiplex movies but I took a quick peek and don't think I broke anything. If anyone would like it here it is....
http://www.themurrayworld.com/misc/cleartitle/Pushing.png
http://www.themurrayworld.com/misc/cleartitle/chuck.png
http://www.themurrayworld.com/misc/cleartitle/entourage.png


Here's a link to the package that contains Viewtype_Multiplex.xml(based off Hitcher's) and 18 TV shows...http://www.themurrayworld.com/misc/cleartitle/ClearTitle.rar. If you want to see what I did, Ctrl+f(to find in page) the word- mcborzu.

Installation: Same as Clearart...
Create a folder, or use mine, name cleartitle in the media folder
I kept my images 190 x 56

I like it, might as well share it.

Jamdez
2009-07-11, 06:41
Really nice thanks.

Can you help me figure out why the image gets truncated at each end though?

http://www.jamdez.com/xbmc/cleartitle.jpg

reaven
2009-07-11, 11:03
check the width of the control