March, 2014
now browsing by month
I would like to resize a widget to a preset size when swiping down.
Is it possible somehow? scripting did it
If not I would suggest to add an action for that.
I just noticed that while rotating Dynamic Text, going from 67° to 68° the text changes.
V 9.9.10
]]>For some reason, when I change the size of an item(in free mode) from a script, it is not updated until I go to edit…
Launch item with password
Keep in mind it’s very easy to break this lock, just launching the item from another gesture, change the script, change the tap gesture…But here it is.
This script allows you to store a password (string) in the item, needed to launch it (so it can be a folder, shortcut, bookmark)
Instructions:
– Copy/paste this script
– Set it as the tap action of the item you want, if you want to set it to all remember to go to the container setting.
-If no password are found you will be asked to make a new one.
-You need to write the exact String to launch the item
-If you want to change an already set password write “reset:” + [your old password] example “reset:1234”
———————————-
var item = LL.getEvent().getItem();
if(item==null)return;
pin = item.getTag();
if(pin==null){
if(confirm(“No password saved found.\nDo you want to make a new one?”)){reset();}else{item.launch();}
}else{
var inp = prompt(“Insert Password:”,””);
if(inp==null){return;}
else if(inp==pin){item.launch();}
else if(inp==”reset:”+pin){reset();}
else{ Android.makeNewToast(“Wrong password”,true).show();}
}
function reset(){
var newPin = prompt(“Write the new custom password:”,””);
if(newPin==null)return;
var new2Pin = prompt(“Write again the new custom password to confirm:”,””);
if(new2Pin==null)return;
if(newPin==new2Pin){
item.setTag(newPin);
Android.makeNewToast(“pasword saved”,true).show();
}else{
Android.makeNewToast(“the passwords are not the same”,true).show();
reset();
}
}
]]>Anyone have any experience or ideas on why some of th icons would be getting mixed up in th app draw?
Anyone have any experience or ideas on why some of th icons would be getting mixed up in th app draw?
LL 9.9.10
Tried all th usual, restart, clearing caches, restore from back up – both LL and CWM
]]>In v9.9.10
‘All Settings’ –> ‘Desktop Settings’ takes me to ‘All Apps’.
And it is not just a wrong header. It takes me to the ‘All Apps’ part.
Edit:
This is, when you enter it via ‘All Apps’.
It probably works like that for ages…
But it is (for me) not an uncommon way to get to launcher settings.
]]>A new bug with the lockscreen has occured.
Hey everyone!
I am curious if there is a way to change the gray square behind a folder or remove it.
Also, is there a folder use the icon of the top left most item inside of it as it’s own and update if changed?
Thanks,
Jacob
]]>