MX HQ10 all versions

Matrix10

Administrator
Hello Matrix10

have a question is you are doing any work on these , when a plugin installs its dont show i Icon and the same is if you remove for examlpe cross epg the Icon stays in menu.
is this some thing thats could be fixed.

It can not
plugins that you install do not have such icons.
It is a skin designed to image what it is.
We have no option in coding except for manually adding and changing.
Im sorry ,but this I will not do.
 

Seth_72

Vu+ User
It can not
plugins that you install do not have such icons.
It is a skin designed to image what it is.
We have no option in coding except for manually adding and changing.
Im sorry ,but this I will not do.

How do i search the rigth cross epg line in xml so i can remove it
 

Pixs

Vu+ Newbie
Hello,

Is there a way to display the channel number when the "light info bar" is deactivated?

Thnaks!
 

Matrix10

Administrator
Hello,

Is there a way to display the channel number when the "light info bar" is deactivated?

Thnaks!

Replace (edit) with linux type editor in skin.xml file in /usr/share/enigma2

<widget source="session.CurrentService" render="Label" position="60,37" size="240,54" font="Regular;23" foregroundColor="#008dbc" backgroundColor="#10161616" valign="center" halign="center" transparent="1">
<convert type="ServiceName">Provider</convert>
</widget>

with

<widget source="session.CurrentService" render="ChannelNumber" position="60,32" size="230,60" font="Regular;36" foregroundColor="#008dbc" backgroundColor="#10161616" valign="center" halign="center" transparent="1"/>


But that means you lose the name of the provider.
And it means if it's skin update you have to edit it again.
 

Matrix10

Administrator
How can we change the color of description? I think it will be good for eyes :)

you have to edit skin.xml

<screen name="ChannelSelection" position="center,105" size="1820,880" title="">
<eLabel position="1208,18" size="570,324" zPosition="2" backgroundColor="black"/>
<ePixmap pixmap="skin_default/menu/scroll.png" position="1168,70" size="22,720" zPosition="4" alphatest="blend"/>
<widget source="session.VideoPicture" render="Pig" position="1228,30" zPosition="3" size="530,300" backgroundColor="#ff000000"/>
<ePixmap pixmap="skin_default/menu/menubutton.png" position="1730,815" size="48,48" alphatest="blend"/>
<ePixmap pixmap="skin_default/menu/epg.png" position="1660,815" size="48,48" alphatest="blend"/>
<widget name="list" position="10,70" size="1180,720" scrollbarMode="showOnDemand" enableWrapAround="1" foregroundColor="#ffffff" foregroundColorServiceNotAvail="#999999" colorEventProgressbar="#007aa3" colorEventProgressbarSelected="#ffffff" colorServiceDescription="#afafaf"

replace with
colorServiceDescription="blue"
or
colorServiceDescription="green"
or
colorServiceDescription="yellow"
or
colorServiceDescription="#color HEX CODE"

color hex codes you can find on internet
 

Doll

Vu+ Newbie
Hello.
Can i install the your skin to /media/hdd, to save flash?
What picon do you use with your skin and how much usb stick needed to load them there?
Thanks.
 

Seth_72

Vu+ User
thanks. but just want to move the timeeditor a Little bit dont want to use ui position setup because everyting is perfect
 

Matrix10

Administrator
thanks. but just want to move the timeeditor a Little bit dont want to use ui position setup because everyting is perfect

I think you like to move list down ?? and not Timer editor panel.
Timer editor panel have the same position like all other panels.

If yo like to move timerlist list (blue) i have change to position="5,30"
If you like to move Panel you have to change (red)

<screen name="TimerEditList" position="30,120" size="820,850" title="Timer Editor">
...
....
...
<widget name="timerlist" position="5,30" size="810,630" zPosition="2" setServiceNameFont="Regular;28" setFont="Regular;28" itemHeight="105" enableWrapAround="1" scrollbarMode="showOnDemand" transparent="1"/>
</screen>

shot2.jpg
 

Matrix10

Administrator
i would like to move the text to the blue line so there will be some space Before the text

View attachment 34990

<widget name="timerlist" position="5,30" size="810,630" zPosition="2" setServiceNameFont="Regular;28" setFont="Regular;28" itemHeight="105" enableWrapAround="1" scrollbarMode="showOnDemand" transparent="1"/>

I've already moved 5 if you like to move 10

<widget name="timerlist" position="10,30" size="800,630" zPosition="2" setServiceNameFont="Regular;28" setFont="Regular;28" itemHeight="105" enableWrapAround="1" scrollbarMode="showOnDemand" transparent="1"/>
 
Top