Hi Pierre Hébert when will come the possibility to schedule batch scripts ?
Or is it already possible and how ?
Ex : I want to run a script every week on Sunday morning
]]>/*
/*
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);
}
/*
Quick Message
This script will send a preformatted message to someone.
you will need to install this sweet apk by the dev himself to give the launcher permission to send sms messages
http://www.lightninglauncher.com/permissions//
If your running Marshmallow just installing the apk is not enough there is 1 more step you need to take, go to your device settings and open your application manager press the cog icon on the toolbar and choose app permissions find the sms permission tap it and flick the switch on the new permission and your good to go.
Note: This step will probably be a little diferent on your device but should be nearly the same.
*/
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)
}
]]>//Quick Dial
LL.bindClass(“android.net.Uri”);
LL.bindClass(“android.content.Intent”);
LL.bindClass(“android.content.ActivityNotFoundException”);
LL.bindClass(“android.telephony.TelephonyManager”);
var mctx = LL.getContext();
var num = “4444”; // replace with phone#
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 i = new Intent(Intent.ACTION_DIAL);
i.setData(Uri.parse(“tel:” + num));
mctx.startActivity(i);
}
catch (anfe)
{
alert(anfe);
}
]]>Is this the place to put in suggestions?
Is this the place to put in suggestions?
What a great launcher!!
I use app tagging with an app called folder organizer which allows multiple labels for each app and then I can nest in folders according to the labels. I can find apps easily by function. It would be great if this was built into a launcher. Total launcher seems to have a form of this but need to explore it more.
Also having a quick alphabet list for quick motion in the app drawer would also be helpful.
Keep up the great work.
Here’s a weird one:
I have a Direct Dial shortcut for my wife on my LL desktop, but when I tap it, LL says: “Item is not installed. Search Google Play, or pick another app?”
I tried removing the shortcut and readding it: same result.
I’m not sure when this stopped working, but it was probably when I upgraded from an S6 to an S7. Has anyone seen this strange behaviour before?
]]>








D5 Creation