xboxscene.org forums

Author Topic: My Tv Link  (Read 142 times)

Warlock427

  • Archived User
  • Newbie
  • *
  • Posts: 16
My Tv Link
« on: June 09, 2006, 08:25:00 PM »

Can anyone please help as i want a button in the media blade for my tv script (IMG:style_emoticons/default/smile.gif)
Logged

mike_j

  • Archived User
  • Newbie
  • *
  • Posts: 3
My Tv Link
« Reply #1 on: June 10, 2006, 02:48:00 PM »

QUOTE(Warlock427 @ Jun 10 2006, 03:56 AM) View Post

Can anyone please help as i want a button in the media blade for my tv script smile.gif


Well, I think it should be possible and quite simple to change the MC360 Guide button to TV Guide. The MC360 Guide would be still available with the Start button. I'll check if it works because I'd like to have MyTV in the Media blade too...
Logged

Warlock427

  • Archived User
  • Newbie
  • *
  • Posts: 16
My Tv Link
« Reply #2 on: June 10, 2006, 04:25:00 PM »

Cool that seems to be the button to do it with will start playing around withit now. Once sorted it will be great then i will look at the skin for the script to match the rest of the skin. maybe get the tv guide coming out on a blade like the media guide.
Logged

Warlock427

  • Archived User
  • Newbie
  • *
  • Posts: 16
My Tv Link
« Reply #3 on: June 15, 2006, 04:15:00 PM »

Sweet I have made it so when you click on the weather tag in the media blade it brings up My TV (Guide)
Here is a pic



But where do you go to change the info the tells you what the button does?

This post has been edited by Warlock427: Jun 15 2006, 11:20 PM
Logged

Ma5tEr5hAkE

  • Archived User
  • Newbie
  • *
  • Posts: 14
My Tv Link
« Reply #4 on: June 15, 2006, 06:59:00 PM »

Add this after the gamercard and put in whatever you want for text where it sayd PUT YOUR TEXT HERE.  All I did was found "descriptions" and then took out the "<includes>xxxxxxx</includes>" and subbed in "<label>PUT YOUR TEXT HERE</label>" and changed the "Control.HasFocus(5)" ot "Control.HasFocus(1)".  Get it...well if you don't...here is the xml.  ps. if you don't need three lines only put in two.

                        <control>
            <description>TV Guide description 1</description>
            <type>label</type>
            <posx>425</posx>
            <posy>205</posy>
            <width>256</width>
            <height>15</height>
            <label>PUT YOUR TEXT HERE</label>
            <font>font14</font>
            <textcolor>FF000000</textcolor>
            <include>shadow-grey</include>
            <visible>Control.HasFocus(1)</visible>
            <animation effect="fade" time="150">WindowOpen</animation>
         </control>

         <control>
            <description>TV Guide description 2</description>
            <type>label</type>
            <posx>425</posx>
            <posy>230</posy>
            <width>256</width>
            <height>15</height>
            <label>PUT YOUR TEXT HERE</label>
            <font>font14</font>
            <textcolor>FF000000</textcolor>
            <include>shadow-grey</include>
            <visible>Control.HasFocus(1)</visible>
            <animation effect="fade" time="150">WindowOpen</animation>
         </control>

         <control>
            <description>TV Guide description 3</description>
            <type>label</type>
            <posx>425</posx>
            <posy>255</posy>
            <width>256</width>
            <height>15</height>
            <label>PUT YOUR TEXT HERE</label>
            <font>font14</font>
            <textcolor>FF000000</textcolor>
            <include>shadow-grey</include>
            <visible>Control.HasFocus(5)</visible>
            <animation effect="fade" time="150">WindowOpen</animation>
         </control>

HA...lol...you prolly want to know how to change the actual command...not just the description...search for <onclick>...if you find it then change the parameters between the onclicks...what ur probably gonna wanna put in is <onclick>XBMC.RunScript(SCRIPT LOCATION)</onclick>.  Sorry for the round-about way of helpin' ya but i think that's what ur lookin' for.

This post has been edited by Ma5tEr5hAkE: Jun 16 2006, 02:03 AM
Logged

Warlock427

  • Archived User
  • Newbie
  • *
  • Posts: 16
My Tv Link
« Reply #5 on: June 15, 2006, 08:56:00 PM »

Thanks heaps mate will work on it now. I have it working when i click on weather tag it is bring up my Tv. So now will just make it tell me what it does when it is highlighted.

again thanks for the help. smile.gif
Logged