INTERACT FORUM

More => Old Versions => Media Center 17 => Topic started by: eddyshere on July 10, 2012, 02:50:03 pm

Title: Theaterview Custom settings : hide clock
Post by: eddyshere on July 10, 2012, 02:50:03 pm
It's really a minor thing : is there a way to hide the clock displaying in the lower right corner of the theaterview startup screen ?
Title: Re: Theaterview Custom settings : hide clock
Post by: rick.ca on July 10, 2012, 05:26:57 pm
The program puts the time there by default. If it didn't you would be able to do so by adding something like the following to C:\Program Files (x86)\J River\Media Center 17\Skins\Theater View\[skin name]\main.xml.

Code: [Select]
<TEXT>
    <Item Text="[Time]" Location="*\***" TextColor="808080" Rect="95,95,100,100" />
</TEXT>

The Rect= parameter defines the position and size of the rectangle the text appears in. If that's removed, it won't display anywhere. Also removing TextColor (now irrelevant), you have...

Code: [Select]
<TEXT>
    <Item Text="[Time]" Location="*\***" />
</TEXT>

After modifying a skin like this, copy it to a new folder (i.e., the whold folder, like ..\Obsidian to ..\Obsidian (mod) so program updates don't overwrite your modification.
Title: Re: Theaterview Custom settings : hide clock
Post by: eddyshere on July 10, 2012, 05:49:59 pm
aaarrrggghh...should have known...xml !

Perfect thanks   :)