March, 2015
now browsing by month
I’m totally new to LLX and was blown away by it’s customization.
I need to restart the app (lighting action) in-order to switch desktops or to get the long press edit menu after unlocking.
]]>I would like to change the the background color of a text or its font color to change by executing a Tasker Task.
If possible, this maybe extended for panel or folder background color etc. Thank you in advance.
]]>Is there a way to get the app drawer to use the switch desktop animation?
So, I feel a bit sheepish asking this, since I must be missing something simple, but for the life of me I can’t get…
This bug/suggestion is related to the well known and old bug of the ‘duplicated app in the app drawer’
Sometimes, when an app is updated, the app drawer instead of replace the app, it adds it again as a new item keeping the old one (I think it is because the main activity changes, but didn’t tested)
This leaves the real app and a ghost one, a refresh fixes it.
Bug: when you click the ghost app the ‘this item is not installed’ dialog is shown, but the drawer gets closed immediately, so you can’t do anything (uhm, I have the auto-exit checked…how would it be without that?) Anyway, as I said with this option you can see the dialog, but it gets closed immediately and you can do anything.
Suggestion: when the launcher detects that this dialog is called from the app drawer, delete the item directly. Or if you prefer ask the user to do a refresh.
]]>I”ve noticed that during the transition from a home screen to the app drawer the system wallpaper bleeds through a…
Hi, I’m using TrianguloY script fadein found in another post.
Hi, I’m using TrianguloY script fadein found in another post. Works fine but when moving desktop the widget reappear, I don’t know why
Attached code and video
—————-
var e = LL.getEvent();
var d = e.getContainer();
var it=d.getItemById(0x000032);
var time=500;
var FPS=20;
var step=1000/FPS;
delta=255/(time*FPS/1000);
setTimeout(function(){fadein(it,255,time);},step);
//fade in
function fadein(it,alpha,time){
if(alpha<0){
return;
}
alpha-=delta;
it.getProperties().edit().setInteger(“i.alpha”,alpha).commit();
setTimeout(function(){fadein(it,alpha,time);},step);
}
]]>