[REQUEST] Home Theater Experince button and Trailer Preview Window
#1
Lightbulb 
Hey Ronie, your skin is great!!! Its my fav Nod

Is it possible to move or copy the HTE button from the movie information screen next to the trailer preview button on the movie "slide" and "fanart" views?

I like using the HTE script but it kinda dulls the excitement when I have to click so many buttons on my remote to get to it.


Also could you made the trailer preview window a clickable button (or something) that makes it fullscreen. I really like the trailer preview window but when the trailer is HD quallity I would like to somehow toggle from fullscreen to preview window with my remote during the trailer playback.
Reply
#2
oatty Wrote:Hey Ronie, your skin is great!!! Its my fav Nod

Is it possible to move or copy the HTE button from the movie information screen next to the trailer preview button on the movie "slide" and "fanart" views?

I like using the HTE script but it kinda dulls the excitement when I have to click so many buttons on my remote to get to it.

i'll think about it. i really don't like cluttering any view with a lot of buttons, but i agree the info dialog is not the best place for it.

oatty Wrote:Also could you made the trailer preview window a clickable button (or something) that makes it fullscreen. I really like the trailer preview window but when the trailer is HD quallity I would like to somehow toggle from fullscreen to preview window with my remote during the trailer playback.

you don't need a button for it, you just need to map the 'FullScreen' command to one of the buttons on your remote (if it's not already there).
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
Thanks Ronie the Fullscreen command worked like a charm. Laugh

The Slide View is the only one that looks good with the HTE button to me.

I made some changes to the View-Slide.xml to attempt these changes. It kinda works:

The theater icon is next to the trailer icon at the top, but when i click it it only plays the video i have setup to play before the feature presentation, but the movie file doesn't play, then it closes normally. boo woo

I didn't know what to change the trailer preview tag too, so i just made it a button. of course when you play a trailer you can't see the preview as it plays, but when you navigate to it with the remote (down under trailer icon) and click it, it does go to fullscreen, yeeeaaaaaaa! (but then i can't return to the preview from fullscreen, boooooooo!)

Huh I'm lost what else to change; you're the expert, so you might have a way to fix these issues.

Hope you implement this but I'll still be enjoying this skin.

here is a snippet of the changes i made, keep up the good work Ronie.
View-Slide.xml

Code:
<!--oatty start-->            
            <control type="button" id="7008">
                    <posx>1071</posx>
                    <posy>29</posy>
                    <width>59</width>
                    <height>40</height>
                    <label>-</label>
                    <font>-</font>
                    <texturefocus>theater-small-focus.png</texturefocus>
                    <texturenofocus>theater-small-nofocus.png</texturenofocus>
                    <onleft>9000</onleft><!--side menu-->
                    <onright>9997</onright><!--theater icon-->
                    <onup>7008</onup><!--stay-->
                    <ondown>596</ondown><!--go to trailer list 596-->
                    <onclick>Dialog.Close(MovieInformation)</onclick>
                    <onclick>Playlist.Clear</onclick>
                    <onclick>Action(Queue,25)</onclick>
                    <onclick>RunScript(special://home/scripts/Home Theater Experience/default.py)</onclick>
                    <visible>Skin.HasSetting(hometheater) + Container.Content(Movies) + !stringcompare(ListItem.Label,..)</visible>
            </control>
            
            <control type="button" id="9997">
                <posx>1142</posx>
                <posy>34</posy>
                <width>50</width>
                <height>34</height>
                <label>-</label>
                <font>-</font>
                <texturefocus>trailer-small-focus.png</texturefocus>
                <texturenofocus>trailer-small-nofocus.png</texturenofocus>
                <onup>9997</onup>
                <ondown>9994</ondown><!--go to trailer preview-->
                <onleft>7008</onleft>
                <onright>9000</onright>
                <onclick>PlayMedia($INFO
[ListItem.Trailer],1)</onclick>
                <visible>!IsEmpty(Listitem.trailer) + !Skin.HasSetting(Fullscreen_Trailer)</visible>
            </control>
            <control type="button" id="9997">
                <posx>1142</posx>
                <posy>34</posy>
                <width>50</width>
                <height>34</height>
                <label>-</label>
                <font>-</font>
                <texturefocus>trailer-small-focus.png</texturefocus>
                <texturenofocus>trailer-small-nofocus.png</texturenofocus>
                <onup>9997</onup>
                <ondown>9994</ondown><!--go to trailer preview-->
                <onleft>7008</onleft>
                <onright>9000</onright>
                <onclick>PlayMedia($INFO
[ListItem.Trailer])</onclick>
                <visible>!IsEmpty(Listitem.trailer) + Skin.HasSetting(Fullscreen_Trailer)</visible>
            </control>
            
            
            
            
            <control type="grouplist">
                <posx>355</posx>
                <posy>60</posy>
                <width>577</width>
                <height>40</height>
                <itemgap>13</itemgap>
                <align>center</align>
                <orientation>horizontal</orientation>
                <include condition="!Skin.HasSetting(Enable_Movies_Media_Flags)">VideoMediaFlags</include>
                <visible>Control.IsVisible(596) + Container.Content(Movies) + !Window.IsVisible(VideoFiles)</visible>
            </control>
        </control>
        <control type="group">
            <posx>0</posx>
            <posy>6</posy>
            <include>Window_OpenClose_Animation</include>
            <visible>Control.IsVisible(596)</visible>
            <control type="button" id="9994"><!--videowindow-->
                <description>trailer preview</description>
                <posx>160</posx>
                <posy>127</posy>
                <width>960</width>
                <height>339</height>
                <animation effect="fade" start="0" end="100" time="1000">Visible</animation>
                <animation effect="fade" start="100" end="0" time="1000">Hidden</animation>
                <visible>Player.HasVideo + !Window.IsVisible(VideoFiles) + !Skin.HasSetting(Fullscreen_Trailer)</visible>
                <onup>9997</onup><!--to trailer icon-->
                <ondown>596</ondown><!--go to movie list 596-->
                <onleft>9994</onleft><!--stay-->
                <onright>9994</onright><!--stay-->
                <onclick>XBMC.ActivateWindow(FullscreenVideo)</onclick>
            </control>
            <!--oatty end-->
Reply
#4
oatty Wrote:The theater icon is next to the trailer icon at the top, but when i click it it only plays the video i have setup to play before the feature presentation, but the movie file doesn't play, then it closes normally. boo woo


if you're running the latest version of the HTE script, you can remove this:
<onclick>Action(Queue,25)</onclick>

also, since you copied to button to another place, this is not needed:
<onclick>Dialog.Close(MovieInformation)</onclick>
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#5
I'm using HTE ver 1.4.1 (not the latest).

I commented the

<onclick>Dialog.Close(MovieInformation)</onclick>

section but it still only shows the feature presentation video. I guess the script uses what menu dialog you're in to queue the current movie, or something like that.
Reply
#6
oatty Wrote:I'm using HTE ver 1.4.1 (not the latest).

I commented the

<onclick>Dialog.Close(MovieInformation)</onclick>

section but it still only shows the feature presentation video. I guess the script uses what menu dialog you're in to queue the current movie, or something like that.

upgrade HTE and remove <onclick>Action(Queue,25)</onclick>.
then try again. ;-)
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply

Logout Mark Read Team Forum Stats Members Help
[REQUEST] Home Theater Experince button and Trailer Preview Window0