November, 2015
now browsing by month
Is there more comfortable way to edit scripts – telnet or by remotely editing from a linux system?
The work is a little bit hard, editing directly on the phone.
at the moment i send the script from a PC to the phone.
]]>Hello all Need Help
Hi
I want to use klwp for live wallpaper.
But not for the hole Desktop I want to add it to a panel. Is that possible?
Regards
Chris
]]>Stop points, H Tuttle
First pic is my home screen.
(Pic 2) I swipe to the right, to slide out my folder buttons (LLX, TOOLS PHOTO) They stop just before the center.
(Pic 3) edit mode, shows where my stop points are located.
The center Stop Point stops scrolling (with snapping on) when stowing the folder buttons (scrolling to left).
The SP on the upper left limits how far the buttons slide in from left to right. If I wanted the buttons to stop in the dead center, I would move that SP a little further to the LEFT. If I wanted those buttons all the way on the right edge, I would move that left SP way to the LEFT.
The folder buttons stop exactly where they are, when swiping them out, because each one opens a side-bar type folder from the left that exactly fills that space.
Hope this helps. Very simple setup, but maybe similar in some ways to yours.
]]>Sometimes I can’t launch apps from folders.
Sometimes I can’t launch apps from folders. Other times (which I don’t have in the video) the folder opens blank or with some apps missing, then when I close and open folder again its fine… Odd
]]>Timers
It is possible to set timers using setTimeout. Pay special attention to clear these timers when needed, LL won’t do this for you. If you don’t clear timers, you may severly increase CPU use and battery consumption.
I have created a timer with setTimeout for 5 Minutes.
When i switched off the display the timer is not executed in deep sleep mode. I expected that the CPU would have been awoken after the specified time to execute some things and sleep after that.
is that right?
When the display is switched on again the timer seemd to be executed after a time.
Can someone explain whats going on behind the curtains?
the Code:
LL.bindClass(“android.provider.Settings”);
var myItem = LL.getEvent().getItem();
var myId = myItem.getId();
function setTimeout15Seconds() {
Settings.System.putInt(LL.getContext().getContentResolver(),Settings.System.SCREEN_OFF_TIMEOUT,15*1000);
Android.makeNewToast(“setting timeout to 15 sec”,true).show();
myItem.setTag(“timeout”, 0);
}
function setTimeout5Minutes() {
var timeout = myItem.getTag(“timeout”)||0;
if (timeout == 0) {
Settings.System.putInt(LL.getContext().getContentResolver(),Settings.System.SCREEN_OFF_TIMEOUT,5*60*1000);
myItem.setTag(“timeout”, setTimeout(setTimeout15Seconds, 5*60*1000));
Android.makeNewToast(“setting timeout to 5 min”,true).show();
}
}
setTimeout5Minutes();
]]>Hey Chris here you go, so I think my problem is the understanding of stop points, they are actually barriers and…
Hey Chris here you go, so I think my problem is the understanding of stop points, they are actually barriers and need to be placed on desktops not around the panel, correct?
]]>