January, 2016
now browsing by month
HTML question
For Jappie Toutenhoofd TrianguloY Pierre Hébert
I’m using scripts from Jappie for my Weather View
My link is
I can use a css given by the website but it’s not fine for me.There are only 2 css.
On my PC I know how to redirect to local file but not on the smartphone
On css something like that on my PC
body{background:url(“file:///C:/Users/Bruno/Desktop/beige001.jpg”) top left repeat;}
Do you know how to redirect to local css on my smartphone.
I want to use the same as the sample with some change (like background with my image or with a semi-transparent color)
Help
I know it’s very technic but very interesting
]]>V12.8.1 issue not present previously.
I downloaded KWGT and bought PRO but I noticed that when I use LL there’s disturbing margin/spacing.
I downloaded KWGT and bought PRO but I noticed that when I use LL there’s disturbing margin/spacing. How to fix it? Its even worse on lock screen desktop
how can I load script from sdcard? Copy-paste so annoying.. Thanks
how can I load script from sdcard? Copy-paste so annoying.. Thanks
Why can’t I get the “expand notifications” action to work?
Why can’t I get the “expand notifications” action to work? I have a Samsung Galaxy Note 5. On Verizon. And lollipop. Whenever I set a gesture or tap action the notification tray doesn’t expand. It’s driving me crazy. Help!
Hi Jay M did you have this issue ?
Hi Jay M did you have this issue ?
A permission needed ?
Pierre Hébert
]]>I do not know why…just learn #LL scripts
LL.bindClass(‘java.lang.Runtime’);
LL.bindClass(‘java.io.DataInputStream’);
LL.bindClass(‘java.io.DataOutputStream’);
LL.bindClass(‘java.lang.StringBuffer’);
function runAsRoot(cmd){
try{
var process = Runtime.getRuntime().exec(“su”);
var reader = new DataInputStream(process.getInputStream());
var writer = new DataOutputStream(process.getOutputStream());
writer.writeBytes(cmd+’\n’);
writer.flush();
writer.close();
var tmp;
var output = new StringBuffer();
while((tmp = reader.readLine()) != null){
output.append(tmp+’\n’);
}
reader.close();
process.waitFor();
}catch(err){
return err;
}
return output;
}
]]>can someone help me or can someone teach me how to use bindings and variables?
can someone help me or can someone teach me how to use bindings and variables? i’m really new to that thing. thanks in advance.