June, 2014
now browsing by month
Just flashed Android L and about to run LLX.
Anything I should watch for?
Happy to do some testing if needed but my tech skills are limited so might need guidance
]]>I know you want now to focus on bugs, but you can still add this to the to-do list for the future (in case it is not…
We can add shadows to the labels…what about add also shadows to the icons? Perhaps you can use the holo selection effect to make them.
Well just a suggestion.
]]>First preview: new Animation, this time it’s all about Rotation ;)

First preview: new Animation, this time it’s all about Rotation
+Pierre Hébert We need to set floats as angles via script! It’s not smooth with integers.
gotoHpage and gotoVPage
Scrolling to pages within a container (e.g. Desktop)
Quick&Dirty Scripts i made cause of this:
https://plus.google.com/u/0/+gerdreuter/posts/cJhWmwo7GnS
use it like this:
LL.runScript(‘gotoHpage’,’-1′)
scrolls to the 1st page left from “homepage”
LL.runScript(‘gotoVpage’,2′)
scrolls to the 2nd page underneath from “homepage”.
The Scripts:
————————————————————————————–
// gotoHpage
// scroll to horizontal Page
// parameter is page relative to Homepage (0)
// leave vertical position as it is.
var gotoPage=LL.getEvent().getData();
var cont=LL. getEvent(). getContainer() ;
var width=cont.getWidth(); // ContainerWidth
var height=cont.getHeight(); // ContainerHeight
var pX=cont. getPositionX(); // Position X Left
var pY=cont. getPositionY(); // Position Y Top
cont.setPosition(gotoPage*width, pY);
————————————————————————————–
// gotoVpage(page)
// scroll to Vertical Page
// parameter is page relative to Homepage (0)
// leave horizontal position as it is.
var gotoPage=LL.getEvent().getData();
var cont=LL. getEvent(). getContainer() ;
var width=cont.getWidth(); // ContainerWidth
var height=cont.getHeight(); // ContainerHeight
var pX=cont. getPositionX(); // Position X Left
var pY=cont. getPositionY(); // Position Y Top
cont.setPosition(pX,gotoPage*height);
Sorry about the total newb question.

Sorry about the total newb question.
I’ve just installed LLX and I’m using a fairly vanilla setup. When I open a folder, although I’ve set a background colour and the transparency is 255, existing icons on the desktop (under the opened folder) are visible.
I’d like the folder background to have no transparency so that there isn’t a mess of folder icons mixed with desktop icons. How do I do this?
]]>v10.3b1
There is now a builtin image picker in this beta. It will improve/fix a few things: faster image picking from icon packs, increased compatibility with some packs, allow background color selection for better viewing, allow picking of nine patches from other packages.
Still no direct compatibility for icon pack other than ADW compatible ones, but since it is possible to pick resources from any app, this option might be a good enough workaround.
]]>