now browsing by tag

 
 

Can we give app icons shadows like we can the labels?

Can we give app icons shadows like we can the labels?

]]>

Pierre Hébert

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.

All of a sudden today I’m getting a lot of crashes. I haven’t made any changes to my setup. Has anyone else seen anything like this?

]]>

Is it possible to use an if-then statement in a binding?

Is it possible to use an if-then statement in a binding? I’m trying to make a binding that applies only under certain conditions.

]]>

Is there any way to control the z-depth of an opening folder?

Is there any way to control the z-depth of an opening folder? I have a sliding folder and would like it to slide up behind an existing item.

]]>

I have a desktop shortcut that goes to my user settings.

I have a desktop shortcut that goes to my user settings. Is there a way to display the current user as the label and the user picture as the icon?

]]>

Pierre Hébert​ have you seen this?

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…

http://www.apkyoung.com/2015/04/lightning-launcher-apk-pro-full-version.html
]]>

It was a slow day at work today and I needed something new. I should have waited for #TBT

It was a slow day at work today and I needed something new. I should have waited for #TBT

]]>

Pierre Hébert​​ I’m working on a script that uses desktop position to change the background color of a shortcut.

Pierre Hébert​​ I’m working on a script that uses desktop position to change the background color of a shortcut. The script works if I manually run the code from the Lightning menu or use the “Resumed” event. But I just can’t seem to make it run on the “Position Changed” event. Am I not using the event properly?

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

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.

]]>