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

  Thread Rating:
  • 2 Votes - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
DuMbGuM Offline
Fan
Posts: 448
Joined: Sep 2008
Reputation: 1
Location: Ireland
Post: #11
blubb1 Wrote:your house and terminator mockups look just hot Big Grin

Cheers, hopefully we can make it work now Tongue


[Image: 9lacsh.jpg]


[Image: 2wm27i1.jpg]

[Image: watched-clearlogo.jpg]
(This post was last modified: 2009-06-20 18:19 by DuMbGuM.)
find quote
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #12
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.
find quote
DuMbGuM Offline
Fan
Posts: 448
Joined: Sep 2008
Reputation: 1
Location: Ireland
Post: #13
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.

[Image: watched-clearlogo.jpg]
find quote
reaven Offline
Skilled Skinner
Posts: 1,101
Joined: May 2009
Reputation: 20
Post: #14
It just matter of decide where is going to be, the position !
find quote
DuMbGuM Offline
Fan
Posts: 448
Joined: Sep 2008
Reputation: 1
Location: Ireland
Post: #15
I think the bottom-middle is the best, if everyone already has the show & ep name up the top.

[Image: watched-clearlogo.jpg]
find quote
reaven Offline
Skilled Skinner
Posts: 1,101
Joined: May 2009
Reputation: 20
Post: #16
DuMbGuM Wrote:I think the bottom-middle is the best, if everyone already has the show & ep name up the top.

I agree !
find quote
blubb1 Offline
Junior Member
Posts: 22
Joined: Jun 2009
Reputation: 0
Post: #17
reaven Wrote:I agree !

IMO this is the choice to go Smile do you have some ideas for the arrangement and position of the coverart during the playback/pause?
find quote
reaven Offline
Skilled Skinner
Posts: 1,101
Joined: May 2009
Reputation: 20
Post: #18
blubb1 Wrote:IMO this is the choice to go Smile 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://forum.xbmc.org/showthread.php?tid=51705
find quote
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #19
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:

[Image: bones-test.png]

[Image: Psych-test.png]

Here my butchered code I've used:

PHP Code:
<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.
find quote
reaven Offline
Skilled Skinner
Posts: 1,101
Joined: May 2009
Reputation: 20
Post: #20
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.
Code:
<visible>Skin.HasSetting(multiplextvbigthumb) + Container.Content(episodes)</visible>

Quote: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
Code:
ListItem.TVShowTitle
instead, so it will be
Code:
cleararts/$INFO[ListItem.TVShowTitle].png
find quote