XBMC Community Forum
Film studio Flag Icons - Post new ones here! - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Skin Help and Support (/forumdisplay.php?fid=67)
+---- Forum: Artwork packs (/forumdisplay.php?fid=71)
+---- Thread: Film studio Flag Icons - Post new ones here! (/showthread.php?tid=48315)



- Halibutt - 2009-04-22 22:26

ccMatrix Wrote:Can someone upload the Babylonian Productions logo from http://forum.xbmc.org/showpost.php?p=320643&postcount=207 to the mediaflags page ? I just want to make sure it isn't lost. Thanks.

Thanks for reminding me, done.


- mindweaver - 2009-04-23 08:08

A & M Films overlaps almost all studio logos :/


- Halibutt - 2009-04-23 08:50

mindweaver Wrote:A & M Films overlaps almost all studio logos :/
You mean it's taken the place of Shout, right? FF, any idea what went wrong? Probably it's the & sign - I guess we should rename it to A and M.
Cheers


- mindweaver - 2009-04-23 08:53

Halibutt Wrote:You mean it's taken the place of Shout, right? FF, any idea what went wrong? Probably it's the & sign - I guess we should rename it to A and M.
Cheers

Exactly Smile

It might be the & that confuses xbmc.


- FernFerret - 2009-04-23 09:13

yea, i havent gotten a chance to add the bad character checker, i'll go fix that one manually. I have a lot of changes that will be made over this weekend, i'm just really booked right now.

Also in an effort to maintain only two xml files as I am currently doing, I will be updating so that the downloadable package will support only the latest Arugia that djh_ commits, so only the most bleeding edge version, which is what we're all doing here anyways with this project.

--FF


- menthe - 2009-04-23 11:29

Hi Smile

A new one for Studio Ghibli:

[Image: ghibli.png]

And the code to add in 720p/Includes_MediaFlags.xml
Code:
<control type="image" id="81">
    <include>Furniture_ShowcaseMediaFlagsVars</include>
    <texture>flags/ghibli.png</texture>
    <visible>substring(listitem.studio,Ghibli)</visible>
</control>



- scrolling - 2009-04-24 06:28

Halibutt - I have another request here. I tried doing it myself and quickly found out that I'm not very good with Photoshop. Thanks again.

[Image: viewaskew.th.png]


- Arcanthur - 2009-04-24 19:27

Created a few new icons for you guys:
[Image: capcom.png]
Capcom

[Image: summit.png]
Summit

[Image: walden.png]
Walden Media

[Image: weinstein.png]
Weinstein

and I did another version of Magnolia

[Image: magnolia.png]


- Only One Haze - 2009-04-25 17:40

i have a few requests, not sure where u guys are getting the images so if u could point me in the right direction i would be glad to help find them.

Storyline Ent.
57th and Irving Productions
Land Films
Condemned Productions
Avnet (The Mighty Ducks Movies, even though i thought they were Disney)
Milshake Films
Elevation Filmworks
MTV Films
MTV Networks


thanks guys! and again point in the right direction and i will gladly help in the search


- digitalhigh - 2009-04-25 17:46

@FernFerret -

Any word on the Serenity support yet? As soon as you get a working model going, I'm interested in developing a script that will automatically update the skin's studio icons with no interaction required on the part of the user...

But first I need support! Wink



Edit:

Also, the code for studio "Disney" needs to be changed. There's no logical reason that Pixar and Disney should be grouped together in the same category.

Should be:

Code:
                <control type="image">
                    <include>StudioFlagGutsBig</include>
                    <texture>studio/disney.png</texture>
                    <visible>substring(listitem.studio,Disney) + !substring(listitem.studio,Pixar)</visible>
                </control>
                <control type="image">
                    <include>StudioFlagGutsBig</include>
                    <texture>studio/pixar.png</texture>
                    <visible>substring(listitem.studio,Disney) + substring(listitem.studio,Pixar)</visible>
                </control>