This board is now closed. The Blackhole image ended in 2020. The board will remain available in Read Only Mode, so all the posts from the last 15+ years are not lost. We thank you for being part of the community for the last 15+ years. You can join the OpenBh board if you have not already done so at www.openbh.net.

Blinking clock or indication of record process

Don Andres

BH Lover
Hi ,
Is there any posibility to activate either " Blinking Clock" in display or Red light in BH 2.0.5 or any indication for upgoing recording ? Have activated "ON" - "show blinking clock in display during recording" in Customise menu , but this doesn't work for me ?!
 
Hi ,
Is there any posibility to activate either " Blinking Clock" in display or Red light in BH 2.0.5 or any indication for upgoing recording ? Have activated "ON" - "show blinking clock in display during recording" in Customise menu , but this doesn't work for me ?!

It will blink if your STB on standby ,while its recording!
 
It will blink if your STB on standby ,while its recording!
Well,
Thx for the sugesion :)
Have tried manual recording and "timer" , receiver is in Stand-bye , no sign of blinking clock .
Thought maybe this is skin related , changed to default skin , same result .
I'm using Neutrino key ltayout , have also tried to switch in "Paulli" to E2 setting , same negative result .
Runnins out for ideas ......
 
Is not main skin problem but problem in py coding and VFD skin coding

You can change in skin_user.xml in /etc/enigma2/
if you replace :

<convert type="ConditionalShowHide"/>

to

<convert type="ConditionalShowHide">Blink</convert>

Example Standby

<screen name="StandbySummary" position="0,0" size="140,32" id="1">
<widget source="global.CurrentTime" render="Label" position="13,10" size="90,22" font="VFD;28" halign="right" valign="center" transparent="1">
<convert type="ClockToText">Format:%H:%M</convert>
</widget>
<widget source="global.CurrentTime" render="Label" position="105,10" zPosition="1" size="40,16" font="VFD;16" halign="left" valign="top" transparent="1">
<convert type="ClockToText">Format:%S</convert>
</widget>
<widget source="session.RecordState" render="Pixmap" pixmap="vfd_icons/rec.png" position="123,0" size="15,9">
<convert type="ConditionalShowHide">Blink</convert>
</widget>
</screen>
 
Back
Top