now browsing by tag
Can we give app icons shadows like we can the labels?
Pierre Hébert
I’ve been playing around with the APK on the Lightning Launcher website that installs an analog clock on your desktop. I made some modifications to the code to change the style. I haven’t had a problem with any of that. I can’t figure out the parameters of the shortcut being placed on the desktop. What kind of item is needed, and what are the settings it needs to properly run the resumed and paused scripts?
]]>All of a sudden today I’m getting a lot of crashes.
Is it possible to use an if-then statement in a binding?
Is there any way to control the z-depth of an opening folder?
I have a desktop shortcut that goes to my user settings.
Pierre Hébert have you seen this?
Originally shared by Dades Nugroho
Lightning Launcher Apk Pro Full Version
Lightning Launcher Apk Pro – Lightning Launcher Apk is an application launcher that has many advanced features to enhance your android. Lightning Launcher has a feature very much. As Custom desktop, change the font, change the color, folders and many others…
]]>Pierre Hébert I’m working on a script that uses desktop position to change the background color of a shortcut.
Here is the script if it helps:
var e = LL.getEvent();
var c = e.getContainer();
var wide = c.getWidth();
var xloc = c.getPositionX();
var scuthome= LL.getItemById(6750221).getProperties().edit();
if (xloc < 1080) {
scuthome.getBox(“i.box”).setColor(“c”,”ns”,0x1d000000);
scuthome.commit();
} else {
scuthome.getBox(“i.box”).setColor(“c”,”ns”,0x00000000);
scuthome.commit();
}
var scutcal= LL.getItemById(6750222).getProperties().edit();
if (1080 >= xloc && xloc << 2160) {
scutcal.getBox(“i.box”).setColor(“c”,”ns”,0x1d000000);
scutcal.commit();
} else {
scutcal.getBox(“i.box”).setColor(“c”,”ns”,0x00000000);
scutcal.commit();
}
]]>Scripting help request :)
I’ve set up my new desktop with a sidebar which has shortcuts to different positions (pages) on my desktop. I want to be able to highlight whichever shortcut is for the current position (similar to the sidebar on the Inbox app).
So basically I need to highlight an item in a folder based on desktop position and have no idea where to start. I recall a post from a whole back from someone who did something similar based on which folder they had open but I can’t find the post now. Any help would be greatly appreciated.
]]>