August, 2015

now browsing by month

 

Morning folks…anyone have any tips on using the built in lock screen of LL with KLWP?..any help appreciated 😁

Morning folks…anyone have any tips on using the built in lock screen of LL with KLWP?..any help appreciated 😁

]]>

How can I do folder 3×3 and not only 2×2?

How can I do folder 3×3 and not only 2×2?

]]>

Hi!

Hi! Since a few days ago, widgets do not update on any desktop/screen. None of them do (yahoo weather, google calendar, google now, etc.). Not even the alarm widget does. When I touch the clock symbol, an alarm symbol appears on my notification panel, meaning that the widget is working, but the alarm symbol does not turn from grey to green to indicate that the alarm is on, like it did before.

I am using v. 12.5.2 (R2313) in a Samsung Galaxy S3, Android 4.3 with Rogers Canada.

Restarting the phone updates the widgets, but only once, and they remain in that state until I restart the phone again.

]]>

As requested by +Wern-Yuen Tan (Can’t link, damn google+) here…

As requested by +Wern-Yuen Tan (Can’t link, damn google+) here https://plus.google.com/+LukasMorawietz/posts/Ve1NnJHY5GH I  updated the sources of all of my 4 Play Store apps.

As they all require an APK to work I didn’t upload them as a script page, but instead at Github. https://github.com/F43nd1r?tab=repositories (You’ll find some older projects here too)

]]>

On my previous phone when I was placing items on the dwsktop, such as, anot app or widget, I use free mode.

On my previous phone when I was placing items on the dwsktop, such as, anot app or widget, I use free mode. On the previous phone when I had the icon aligned vertically and horizontally with another icon, lines would appear and the icon background would change. I cannot find the setting for this on lightning lauch on my new phone to save my life. Can someone please tell.me where this setting is to make alignong objects so.much easier? Thank you

well i didn´t clean up for the screenshot but i just love it!

well i didn´t clean up for the screenshot but i just love it!

ive made it so that the musicplayer widget and the 5 apps in the lowest row  below the white line always stay on screen(the pin function of LLE) and the icons and widgets above the line can be flicked/switched, so i alays have my most used progs apps right there no matter on which desktop page i am. this is especialy useful in the car ! not as fancy as other screenshots here, no addons just normal editing with LLE desktop editor. background is deepsea live background….

Hey guys lightning launcher is THE BEST!

Hey guys lightning launcher is THE BEST!!! its in a completely different league than the the puny launchers ! so congratulations for this amazing app!

but i think  you should also advertise its other components more !

today i installed a program for root which was to remap the buttons ! in its free version you can only trigger “actions” with the hardware buttons. in the paid app you can also launch apps , so now guess what ..lightning launcher provides actions to launch scripts , shortcuts AND apps. when i found this out today that is amazing, this is like a minitasker or a bridge between other apps and while advanced i can see this being very helpgull in the future of modding my phone!!

How can i create a float array on LL?

How can i create a float array on LL?

I know, it’s the stupidest question i ever made here… But I can’t find out a way!

I tried different classic java syntaxes, but it always shows up “Syntax Error”

]]>

A little bit update for  official scripts [script_change_homescreen]

A little bit update for  official scripts [script_change_homescreen]

http://www.pierrox.net/android/applications/lightning_launcher/wiki/doku.php?id=script_change_homescreen

thanks for Lukas Morawietz’s answer in my this question https://plus.google.com/105062416156990739160/posts/3hqSu7pfMXJ

I add this part ‘ // write the current file’

it functions this:

– when press home button with preivous script, the target desktop maybe not the desktop I wanna

– modifiy current (variable in files) can make the home desktop be same with the current desktop.

The reason for this question:

– I definite the var for setHomeDesktop mannully

– I run this script outside of the LL 

Tips:

 If set the desktop mannually, we need root to view the config files to get the desktop ids in our mind.

———————–

//import java classes

LL.bindClass(“java.io.FileReader”);

LL.bindClass(“java.io.BufferedReader”);

LL.bindClass(“java.io.FileWriter”);

LL.bindClass(“java.io.File”);

LL.bindClass(“java.lang.System”);

 

//set Desktop with Id as Homescreen

setHomeDesktop=function(id)

{

//create the needed structure

var file=new File(“data/data/net.pierrox.lightning_launcher_extreme/files/config”);//this file contains desktop properties

var r=new BufferedReader(new FileReader(file));

var s=””;

 

//read the file

var l=r.readLine();

while(l!=null)

{

s+=l;

l=r.readLine();

}

//change the property

var data=JSON.parse(s);

data.homeScreen=id;

//write the changed stuff back to the file

var w=new FileWriter(file);

w.write(JSON.stringify(data));

w.flush();

w.close();

// write the current file

var file_cur=new File(“data/data/net.pierrox.lightning_launcher_extreme/files/current”);//this file contains desktop properties

var r_cur=new BufferedReader(new FileReader(file));

var w_cur=new FileWriter(file_cur);

w_cur.write(id);

w_cur.flush();

w_cur.close();

 

//restart the launcher

System.runFinalization();

System.exit(0);

}

 

setHomeDesktop(LL.getEvent().getData());

http://www.pierrox.net/android/applications/lightning_launcher/wiki/doku.php?id=script_change_homescreen
]]>

Hi

Hi

Maybe it was discussed before, but:

is there a way to launch a script (or action) when the folder is being closed?

There is no event like this for folder, but maybe I can set it based on some folder state?

PT

]]>