now browsing by tag
Pierre Hébert Hello, I want to open two folders at once.
I use a swipe action at the homescreen to trigger two “open folder” actions, but only the first folder will close if i start an app or push the back button. Is there a trick to close both folders?
]]>Hello, take a look at my tutorial about “blur background when open a folder”.
Just follow this link
http://directory.lightninglauncher.com/blur-the-background-when-opening-a-folder/
]]>TrianguloY Is it possible to load saved layouts with a script? And if “yes” how does the script look?
Hello, i found useful tools for screendesign.
(Two links inside)
If you want to rebuild a screen from a previous design or create a copy from another layout. With this app You can overlay a picture/screenshot and/or a grid .There is also an option to set the alpha value. The picture is always visible.
https://play.google.com/store/apps/details?id=com.ms_square.android.design.overlay
The next one is custom grid overlay. You can set single or repeating lines vertical and horizontal with differend colors.
If you have many screens in your launcher and want to have a continous look, this tool is very good.
https://play.google.com/store/apps/details?id=com.actinarium.materialcue
Have fun 🙂
]]>Hello, i found an usefull app to measure the screenposition- and size of objects on your screen.
https://play.google.com/store/apps/details?id=com.needjava.screenrulerfree
]]>Pierre Hébert If i add an element to my desktop it appears with its center at the top left of the desktop (x=0, y=0).
Is there a way to disable the snap to objects in the editor?
Hello, TrianguloY
How can I open two folders at once with a script? I know it was already posted here, but i cant find it 🙁
Thanks
]]>Hello, I want to open a folder with a script.
Can someone help please?
thx
]]>Hello, I’m not good in scripting but i try and learn every day.
(sorry for my english, hope you will understand :-))
Also a big Thanks to the community.
Now here is a script. Maybe someone find it useful.
I have one desktop with an analog clock widget. I use WallpaperChanger and if i change the background the kontrast of th clock widget is low. I want to move the widget to another position by “longtap” the desktop.
The touch position will be calculated by the script and send to the “setPosition” of the object. The half of the objects hight and width must substracted to get the object center. In my case i add this manually because i don’t know ho to do this in a script.
After longtap on the desktop the clock moves to the tap position.
I know i could open the edit mode and move the widget, but for me is this script an more elegant solution.
Here is the script
(tipps for optimization are welcome)
var e = LL.getEvent();
var ey = e.getTouchY();
var ex = e.getTouchX();
LL.getCurrentDesktop().
getItemByName(‘clock’).
setPosition(ex -116, ey -108);
LL.getCurrentDesktop().
getItemByName(‘clock’).
setVisibility(true);
]]>