Jump to content


Nabukodonosor

Member Since 5 Jul 2014
Offline Last Active 13 Jul 2022 22:03
-----

Topics I've Started

Picons on OpenPli 2.1

21 April 2021 - 12:50

Hey guys. I have OpenPli 2.1 installed on one of my old devices, Dreambox 800 SE, I think that's the latest OpenPli that could be installed on this device, but for the love of god, I can't find how to turn on picons on this thing. Anyone knows?


serviceNameFont valign?

18 April 2021 - 23:12

Hey there. I'm trying to figure it out how to vertical align Name and Description in channel selection. You can see on my screenshots how it's not vertical aligned, and I can't find it where to edit that. The only thing I can edit is the font type and size:

 

serviceNameFont="Regular;34"

 

 

Any ideas?


How to show text until a condition is met?

11 April 2021 - 21:56

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?


OpenPli 7.3 - Can't connect to WiFi

11 April 2021 - 12:36

Hey guys. I tried everything but I can't connect to WiFi in OpenPli 7.3 using my Octagon SF8008 receiver. I go to Network, scan for available networks, find my Wifi, select it, and nothing happens. The Link light is not green. You can see on my image what happens when I test the network. I then reboot to OpenATV and connect to that same network without any issues, getting that Link button green. So, I think it's the OpenPli issue. Any ideas?


How to check for the network ON or OFF?

30 March 2021 - 20:40

hey guys. So, I'm trying to implement lan check in my skin. This is my code:

 

<ePixmap pixmap="Amala/icons/ico_lan_off.png" position="1205,32" size="27,25" zPosition="1" alphatest="blend"/>
<widget source="session.CurrentService" render="Pixmap" pixmap="Amala/icons/ico_lan_on.png" position="1205,32" zPosition="2" size="27,25" alphatest="blend">
      <convert type="RouteInfo">Lan</convert>
      <convert type="ConditionalShowHide" />
    </widget>

But I always get the ON icon, even when I pull the lan cable off. How can do this, so that I get the On or Off icon depending if the internet is working or not?