Hey guys. So, I have these widgets, all in the same position, they show some text from oscam, not that important. It's in my infobar screen. Here's the code for it:
<widget source="session.CurrentService" render="FixedLabel" text="Network" position="650,160" size="390,30" halign="center" font="SpecialElite;28" zPosition="5" transparent="1" foregroundColor="#DC143C" backgroundColor="#10161616"> <convert type="GlamourAccess">Net</convert> <convert type="ConditionalShowHide" /> </widget> <widget source="session.CurrentService" render="FixedLabel" text="Emulator" position="650,160" size="390,30" halign="center" font="SpecialElite;28" zPosition="4" transparent="1" foregroundColor="#8FBC8F" backgroundColor="#10161616"> <convert type="GlamourAccess">Emu</convert> <convert type="ConditionalShowHide" /> </widget> <widget source="session.CurrentService" render="FixedLabel" text="Card" position="650,160" size="390,30" halign="center" font="SpecialElite;28" zPosition="3" transparent="1" foregroundColor="#6495ED" backgroundColor="#10161616"> <convert type="GlamourAccess">Crd</convert> <convert type="ConditionalShowHide" /> </widget> <widget source="session.CurrentService" render="FixedLabel" text="Cache" position="650,160" size="390,30" halign="center" font="SpecialElite;28" zPosition="2" transparent="1" foregroundColor="#006400" backgroundColor="#10161616"> <convert type="GlamourAccess">Cache</convert> <convert type="ConditionalShowHide" /> </widget> <widget source="session.CurrentService" render="FixedLabel" text="Free To Air" position="650,160" size="390,30" halign="center" font="SpecialElite;28" zPosition="1" transparent="1" foregroundColor="#F0F8FF" backgroundColor="#10161616"> <convert type="GlamourAccess">Fta</convert> <convert type="ConditionalShowHide" /> </widget>
How can I show some text, something like "Waiting for information..." in the same position, UNTIL that condition above is true, and that "Network" text shows up?
Edited by Nabukodonosor, 11 April 2021 - 21:57.