Solved Hiding the on screen pause icon?
#1
Question 
How do I hide the large on screen pause icon that appears when pausing video playback?

Thanks.
Reply
#2
Hi hollyt9,

as it's pretty simple to achieve I've wrote you a quick how-to:

Hide big pause icon when pausing video playback:

1. Navigate to skin.eminence/1080i

2. Open the file Includes_Images.xml and go to:
Code:
<variable name="PlayerBigIcon">
        <value condition="Player.Rewinding">common/bigrw.png</value>
        <value condition="Player.Forwarding">common/bigff.png</value>
        <value condition="Player.Paused">common/bigpause.png</value>
</variable>

3. Just remove the line with the bigpause.png:
Code:
<variable name="PlayerBigIcon">
        <value condition="Player.Rewinding">common/bigrw.png</value>
        <value condition="Player.Forwarding">common/bigff.png</value>
</variable>


cheers,
josch
Reply
#3
Thanks josch!
Reply

Logout Mark Read Team Forum Stats Members Help
Hiding the on screen pause icon?1