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 😁
Hi!
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.
]]>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
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?
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]
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());
]]>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
]]>