September, 2016
now browsing by month
need help with a wallpaper.
need help with a wallpaper.
hi, i use LL, i have 3 desktops, two that i use and one blank. i also use klwp. the problem is, when i try to set a wallpaper with klwp, it changes all 3 desktops, i want that only the blank one will be affected. how do i do that? i couldn’t find a solution.
Not sure if this is a bug, but I am getting a nullpointer exception when trying to get all items of the current…
Neither of these work with v14a8
getEvent().getContainer().getAllItems()
getEvent().getScreen().getCurrentDesktop().getAllItems()
In V12 I used LL.getCurrentDesktop().getItems() which doesn’t work now either
]]>V14a8 alpha
Plenty of bug fixes! I believe this version works quite correctly now. If all goes well I’ll migrate it to beta.
Most remaining issues (but not all) are linked with scripts, in particular background scripts. Don’t hesitate to let me know if you encounter strange behaviors, my goal is to keep full compatibility with the stable version 12.9.1. (minus bugs and performance improvements…)
Full ChangeLog: http://www.lightninglauncher.com/wordpress/change-log/
]]>Can you add a progressbar to this even if its only an indeterminate one, it can take a while to apply the icon pack…
Can you add a progressbar to this even if its only an indeterminate one, it can take a while to apply the icon pack so a little bit of eye candy would be nice to look at while it does its thing.
]]>What is the working, not deprecated alternative for below code?
function ClearList(item) {
var Ritems = item.getItems();
for (var j = 0; j < Ritems.getLength(); j++) {
item.removeItem(Ritems.getAt(j));
}
}
My guess was:
function ClearList(item) {
var Ritems = item.getAllItems();
for (var j = 1; j <= Ritems.length; j++) {
item.removeItem(Ritems[j]);
}
}
But the “removeItem” throws an error 🙁
]]>Flashing on scrolling direction change
Assign this script to a shortcut:
LL.getCurrentDesktop().getProperties().edit().setString(“scrollingDirection”,”AUTO”).commit();
And notice a short flashing. Seems like the screen gets refreshed quickly? Doesn’t look great though.
New behaviour introduced with v14a
Additionally, the container scrolls to top when the script gets executed. I would expect the container remains in its scrolling position until an explicit setPosition().
]]>