Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hello Matrix 10 . i wounder how i can Move in the skin, the position at the right , when i start for example emc or press epg button the info on the rigtht is of the screen
regards seth
try to change the TV Aspect RatioHello Matrix 10 . i wounder how i can Move in the skin, the position at the right , when i start for example emc or press epg button the info on the rigtht is of the screen
regards seth
Not exactly.Cifs using password.Hello Matrix 10 eclipse se in Bh 3.06 missing to add a password if you mount a networkdrive i can only add usernamn and not password
<applet type="onLayoutFinish">
from enigma import getDesktop, eSize, ePoint
import math
desktop_w = getDesktop(0).size().width()
desktop_h = getDesktop(0).size().height()
count = len(self.list)
width = int(0.40625 * desktop_w)
itemheight = 35
if desktop_w == 1920:
scale = 1.2
else:
scale = 1
if not self["text"].text:
textsize = (width, 0)
listsize = (width, int(math.ceil(itemheight*scale)*count))
if self["ErrorPixmap"].visible or self["QuestionPixmap"].visible or self["InfoPixmap"].visible:
self["list"].instance.move(ePoint(int(math.ceil(65*scale)), 0))
wsizex = textsize[0]+int(math.ceil(65*scale))
else:
self["list"].instance.move(ePoint(0, 0))
wsizex = textsize[0]
self["list"].instance.resize(eSize(*listsize))
else:
textsize = self["text"].getSize()
if textsize[0] < textsize[1]:
textsize = (textsize[1],textsize[0]+10)
if textsize[0] > width:
textsize = (textsize[0], textsize[1]+int(math.ceil(itemheight*scale)))
else:
textsize = (width, textsize[1]+int(math.ceil(itemheight*scale)))
listsize = (textsize[0], int(math.ceil(itemheight*scale)*count))
self["text"].instance.resize(eSize(*textsize))
if self["ErrorPixmap"].visible or self["QuestionPixmap"].visible or self["InfoPixmap"].visible:
self["text"].instance.move(ePoint(int(math.ceil(65*scale)), 0))
else:
self["text"].instance.move(ePoint(10, 10))
if self["ErrorPixmap"].visible or self["QuestionPixmap"].visible or self["InfoPixmap"].visible:
self["list"].instance.move(ePoint(int(math.ceil(65*scale)), textsize[1]))
wsizex = textsize[0]+int(math.ceil(65*scale))
else:
self["list"].instance.move(ePoint(0, textsize[1]))
wsizex = textsize[0]
self["list"].instance.resize(eSize(*listsize))
wsizey = textsize[1]+listsize[1]
wsize = (wsizex, wsizey)
self.instance.resize(eSize(*wsize))
self.instance.move(ePoint((desktop_w-wsizex)/2, (desktop_h-wsizey)/2))
</applet>