Archives
now browsing by author
Script:
Script:
Hide a folder’s label in the app drawer/home screen, but when the folder is selected/ expanded, show the label as it usually appears at the top of the folder.
Is this script doable? If so, some pointers on how to get started would be appreciated.
Thank you
Batch adding of apps doesn’t seem to be working?
Batch adding of apps doesn’t seem to be working?
As the website’d tips and tricks page says, I long tapped on my desktop, selected “Add” then “App”. Without leaving the App Drawer, repeatedly long tapped on apps and finished with “Add to launcher”. But then all it does is take me back to my Desktop, and no changes have been made. No apps added.
Is anybody else experiencing this problem?
How can this be fixed?
Thank you in advance.
Hey there community!
Hey there community!
Lightning Launcher is absolutely incredible. I was watching it’s intro video and saw a theme that instantly caught my eye: https://youtu.be/QOzQ2CeLZcQ?t=8m21s
It is by Karsten Franke.
I was hoping that someone would know what this theme is called/has the play store link?
And if it is not a publicly available theme, then how would I go about duplicating it?
Any help would be highly appreciated.
Thanks!
Shortcut icon changer
Shortcut icon changer
This script will allow you to quickly and easily change the icon of a shortcut as suggested by me here https://plus.google.com/113157980543803349502/posts/CWBSDuJ5Vj7
Its extremely simple and after picking a character there’s no more error handling so make sure you pick something for every option and don’t press cancel or the script will fail. This is Pierre’s script i just edited it to make it easier and quicker to use for those who dont want to mess about with the code every time they want to change an icon (like me) hope you find it useful
How to use: Set the script to show in the item menu.
/*
/*
Quick Message
This script will send a preformatted message to someone.
you will need to use this sweet app to give the launcher SEND_SMS permission.
https://play.google.com/store/apps/details?id=com.faendir.lightning_launcher.permission_manager
Make sure you read the app description*/
LL.bindClass(“android.net.Uri”);
LL.bindClass(“android.content.Intent”);
LL.bindClass(“java.language.IllegalArgumentException”);
LL.bindClass(“android.telephony.TelephonyManager”);
LL.bindClass(“android.telephony.SmsManager”);
var mctx = LL.getContext();
var num = “######”; // replace with phone#
var message = “This is is a test”; // replace with your message
function check()
{
var service = mctx.getSystemService(Context.TELEPHONY_SERVICE);
// Check if device supports telephony
if (service.getPhoneType() == TelephonyManager.PHONE_TYPE_NONE)
{
alert(“This device doesnt support telephony”);
}
else
{
// continue
}
}
check();
try{
var textMan = SmsManager.getDefault();
textMan.sendTextMessage(num, null, message, null,null);
Android.makeNewToast(“Sent”, false).show();
}catch(e){
alert(e);
}