tv show next aired script - new features for skinners

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
nessus Offline
Skilled Skinner
Posts: 573
Joined: Apr 2009
Reputation: 12
Location: Rodos, Greece
Post: #191
Thanks a lot Hitcher.
I'll look it right away and i'll tell you how it goes.

Thanks again for your help

Cheers
Nessus
find quote
nessus Offline
Skilled Skinner
Posts: 573
Joined: Apr 2009
Reputation: 12
Location: Rodos, Greece
Post: #192
Hitcher... sorry men but i am stack... again Sad
I am sure that your code is correct but i must doing something wrong.

Here is what i've done until now.

Sorry for the mediafire but... Pastebin.com is under heavy load right now
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,927
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #193
Here's a bit more done.

http://pastebin.com/Nb4kRJRH

Basically you have to add the daily elements to the weekly one so i think you'll have to drop the slide animations when changing from weekly to daily.

[Image: sig_zps3af3b48e.jpg]
find quote
nessus Offline
Skilled Skinner
Posts: 573
Joined: Apr 2009
Reputation: 12
Location: Rodos, Greece
Post: #194
Hey Hitcher... i manage to make it work.... actually.... almost to make it work Big Grin.
I've change the way the layouts change from <onclick> to <onup> because i don't use weekdays buttons in daily view just a rotated label on the left. So everything works fine although there are two last problems.

First, i cant make the slide animation to work in the defaults scripts lists (200,201...). Its working on backgrounds, weekdays buttons-labels and daily info but not on defaults lists.

The second problem is when you are in daily view and you click on show to go to that show in library, if you come back to tv guide the focus is in weekly view but what you see is the daily view which is makes the guide looks broken.

Here is what i have done until now and this is my slide animation code :
Code:
<include name="TV-Guide-Animation">
    <animation type="WindowOpen" reversible="false">
        <effect type="fade" start="0" end="100" time="300" />
    </animation>
    <animation type="Visible" reversible="false">
        <effect type="fade" start="0" end="100" time="500" />
        <effect type="slide" start="0,50" end="0,0" time="500" tween="back" easing="out" />
    </animation>
    <animation type="Hidden" reversible="false">
        <effect type="fade" start="100" end="0" time="200" />
        <effect type="slide" start="0,0" end="0,50" time="500" tween="sine" easing="out" />
    </animation>
</include>

What do you think...?
find quote
nessus Offline
Skilled Skinner
Posts: 573
Joined: Apr 2009
Reputation: 12
Location: Rodos, Greece
Post: #195
Animation problem fixed.
Now the only problem is the focus when you are in daily view and you click on a show to go to that show in library, and you come back to tv guide.

Ronie... is there a chance this can be fixed from the script ?.
find quote
`Black Offline
Skilled Skinner
Posts: 2,003
Joined: Apr 2009
Reputation: 49
Location: Germany
Post: #196
You could set the focus with onload.

[Image: xp1080.png]
find quote
nessus Offline
Skilled Skinner
Posts: 573
Joined: Apr 2009
Reputation: 12
Location: Rodos, Greece
Post: #197
Thanks Balck.
How do i set focus to the same list id but with different visible conditions ?. I've try this but didn't work.
Code:
<onload condition="IsEmpty(Window.Property(Monday))">SetFocus(200)</onload>
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,927
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #198
The property might be cleared because it's loaded again, maybe set the clearing property to onunload?

[Image: sig_zps3af3b48e.jpg]
find quote
nessus Offline
Skilled Skinner
Posts: 573
Joined: Apr 2009
Reputation: 12
Location: Rodos, Greece
Post: #199
It's already there : <onload>ClearProperty(Monday)</onload>
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,927
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #200
onunload

[Image: sig_zps3af3b48e.jpg]
find quote
Post Reply