Jump to content


Mouneer

Member Since 20 May 2016
Offline Last Active 22 Jun 2016 21:22
-----

Posts I've Made

In Topic: Creating moving/running label

19 June 2016 - 10:33

I have been searching the web for 3 days looking for something similar but couldn't found something related. Your help is always appreciated.


In Topic: 'SCROLL-LCD-TEXT' for OpenPLi3 (Dreamboxes)

17 June 2016 - 14:36

 

Hi All,

 

I have successfully installed this beautiful package. I just want to know how should I use it.

I have a text shown by my plugin:
 

self["myLabel"] = Label("My fixed text")

which is rendered through the following:
 

<screen position="0,0" size="300,300" zPosition="10" backgroundColor="#ff000000"
        title="My text" flags="wfNoBorder">
    <widget name="myLabel" position="10,10" size="300,30"
            font="Regular;26" valign="center" halign="center"
            backgroundColor="#ff000000" transparent="1"/>
</screen>

I want this text to be moving so I tried
 

<screen position="0,0" size="300,300" zPosition="10" backgroundColor="#ff000000"
        title="My text" flags="wfNoBorder">
    <widget render = "RunningText"
            options = "movetype = swimming, direction = top, steptime = 90,
            repeat = 2, startDelay = 600, wrap "
            name="myLabel" position="10,10" size="300,30"
            font="Regular;26" valign="center" halign="center"
            backgroundColor="#ff000000" transparent="1"/>
</screen>
But it didn't work. The text still shown fixed without moving. Any tip? 

 

 

I get that log message

 [Skin] Attribute not implemented: render value: RunningText

In Topic: 'SCROLL-LCD-TEXT' for OpenPLi3 (Dreamboxes)

17 June 2016 - 14:03

Hi All,

 

I have successfully installed this beautiful package. I just want to know how should I use it.

I have a text shown by my plugin:
 

self["myLabel"] = Label("My fixed text")

which is rendered through the following:
 

<screen position="0,0" size="300,300" zPosition="10" backgroundColor="#ff000000"
        title="My text" flags="wfNoBorder">
    <widget name="myLabel" position="10,10" size="300,30"
            font="Regular;26" valign="center" halign="center"
            backgroundColor="#ff000000" transparent="1"/>
</screen>

I want this text to be moving so I tried
 

<screen position="0,0" size="300,300" zPosition="10" backgroundColor="#ff000000"
        title="My text" flags="wfNoBorder">
    <widget render = "RunningText"
            options = "movetype = swimming, direction = top, steptime = 90,
            repeat = 2, startDelay = 600, wrap "
            name="myLabel" position="10,10" size="300,30"
            font="Regular;26" valign="center" halign="center"
            backgroundColor="#ff000000" transparent="1"/>
</screen>
But it didn't work. The text still shown fixed without moving. Any tip? 

In Topic: Detect current working channel on the system

14 June 2016 - 22:04

great tip bro. I will try it. Thank you :)


In Topic: Detect current working channel on the system

14 June 2016 - 02:03

Any tips/hints guys?