now browsing by tag

 
 

Pierre Hébert Hello, I want to open two folders at once.

Pierre Hébert Hello, I want to open two folders at once. one slide from left over the half screenwidth, the other one slides from the right over the half screnwidth. That looks like a curtain.

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”.

Hello, take a look at my tutorial about “blur background when open a folder”. It’s in german but with screenshots. So it should be easy to understand.

Just follow this link

http://directory.lightninglauncher.com/blur-the-background-when-opening-a-folder/

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?

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.

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 🙂

https://play.google.com/store/apps/details?id=com.actinarium.materialcue
]]>

Hello, i found an usefull app to measure the screenposition- and size of objects on your screen.

Hello, i found an usefull app to measure the screenposition- and size of objects on your screen. I use it to put elements on my screen and to set the position and size of new folders (if open). The app is customizable (color, size position etc). Here is the link:

https://play.google.com/store/apps/details?id=com.needjava.screenrulerfree

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).

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). In previous versions of LLX the new objects are placed at the touch position. Could you please made that new objects will be placed at the touch position? Thanks.

]]>

Is there a way to disable the snap to objects in the editor?

Is there a way to disable the snap to objects in the editor?

]]>

Hello, TrianguloY

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.

Hello, I want to open a folder with a script. When the folder is open a wallpaper should be set (a blurred picture). If the folder is closed another wallpaper should be set (same but not blurred). I tried the whole day to write the script but now my brain is Mousse au Chocolat 🙂 .

Can someone help please?

thx

]]>

Hello, I’m not good in scripting but i try and learn every day.

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);

]]>