Apple Movie Trailers script skin
#16
copied from another forum:

Quote:Anybody using the AMT script included with this T3CH release, should update via SVN.

It won't affect people who started fresh, until new trailers are found, which could be anytime.

Refreshing genre's can corrupt the database. If this happens your cache is still good, but you will need to delete the database and recreate it.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#17
hey Nuka1195, if there ever was a project that NEEDED coverflow, it's AMT!
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#18
Pike you see how many lines just to add that Smile If you want to give it a try great.

Skinners I just added a new dialog for theater showtimes. A very simple dialog.

Image
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#19
Is there an SVN for AMT?
Image
Reply
#20
http://xbmc-scripting.googlecode.com/svn...20Trailers
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#21
Nuka1195 Wrote:Pike you see how many lines just to add that Smile If you want to give it a try great.

Skinners I just added a new dialog for theater showtimes. A very simple dialog.

Image

Does this work for the UK as well Nuka?
Reply
#22
it can with the right scraper. I used google, which I got the USA and Canadian one working.

www.google.com/movies
www.google.ca/movies

theres appears to be a www.google.com.au/movies but i get no results from that website, either the zip/postal code I tried is wrong or it's non functional.

I also found www.google.co.jp/movies don't speak the language so don't know if it will work

if you know of one for the uk, post the zip/postal code and the website and i'll see what i can do. It doesn't have to be google, that's just the one i used for USA and Canada
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#23
I thought I tried ".co.uk" before, but I may have tried ".com.uk" instead.

I just added Google UK scraper. I only tested it by entering "london" as the location, you should be able to enter a post code too.

If anybody knows of any other www.google.*.*/movies search engines, post them with the post code or town that worked for you so I can test.

Anybody from australia this address exists http://www.google.com.au/movies, but it asks for a us city or zip.

So far there's only minor differences between USA, Canada, UK.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#24
I'm currently working on mc360 images for an mc360 skin for this script... I'm using the same image names and pixel sizes. Can somebody implement it into the svn if it's good? (I still have a lot to do as I've only done the first 8 images so far)
Reply
#25
just use your postcode mike... works for me
Reply
#26
spaz7986, of course.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#27
Hey nuka here is what I've got so far but the problem I'm having is getting amt-contentpanel_left.png to line up right next to amt-contentpanel.png when I'm in 720p. I always end up with a 1 pixel little vertical line inbetween the two pictures. If I change the positioning to <posx>129</posx> instead of <posx>128</posx> then there is a 1 pixel vertical line overlap between the two images.
Reply
#28
I'm no skinner, sorry can't help.

I just made a minor change to the settings window. sorry Smile

You shouldn't need to include all the gfx, unless you want this to run in skins that are not MC360.

Also I already have the script Tongue
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#29
I do want to be able to run this in other skins than mc360 and the link I posted (if you open it up in xbmc) has my progress in the default skin (for AMT). Could a skinner take a look at this in 720p and tell me if there is a way to line up amt-contentpanel_left.png and amt-contentpanel.png perfectly?
Reply
#30
I've changed a lot about the skin since my last post... I need some help on something...

On this control I need the text color to be FF000000 when Control.IsVisible(50) but I need it to be FFFFFFFF when Control.IsVisible(51) | Control.IsVisible(52) | Control.IsVisible(54). I tried doing this by deleting the animation effects and adding a visibility tag to the control (<visible>Control.IsVisible(50)</visible>). Then I created a second control beneath this one that is a clone with the exception of the text color, visibility tag (<visible>Control.IsVisible(51) | Control.IsVisible(52) | Control.IsVisible(54)</visible>), and the posx and posy tags. Can someone help??

Original:

Code:
<control type="label" id="2150">
                <description>Trailer List Count Label</description>
                <width>100</width>
                <posx>490</posx>
                <posy>327</posy>
                <align>right</align>
                <label>-</label>
                <font>font10</font>
                <textcolor>FFFFFFFF</textcolor>
                <animation effect="slide" time="0" end="135,203" condition="Control.IsVisible(51)">Conditional</animation>
                <animation effect="slide" time="0" end="135,203" condition="Control.IsVisible(52)">Conditional</animation>
                <animation effect="slide" time="0" end="135,203" condition="Control.IsVisible(54)">Conditional</animation>
                </control>

What I tried:

Code:
<control type="label" id="2150">
                <description>Trailer List Count Label</description>
                <width>100</width>
                <posx>490</posx>
                <posy>327</posy>
                <align>right</align>
                <label>-</label>
                <font>font10</font>
                <textcolor>FF000000</textcolor>
                                <visible>Control.IsVisible(50)</visible>
                </control>
            <control type="label" id="2150">
                <description>Trailer List Count Label</description>
                <width>100</width>
                <posx>688</posx>
                <posy>400</posy>
                <align>right</align>
                <label>-</label>
                <font>font10</font>
                <textcolor>FFFFFFFF</textcolor>
                                <visible>Control.IsVisible(51) | Control.IsVisible(52) | Control.IsVisible(54)</visible>
                </control>

Any help?
Reply

Logout Mark Read Team Forum Stats Members Help
Apple Movie Trailers script skin0