September, 2014
now browsing by month
For the scrolling wallpaper issue this is how I am trying to select the wallpaper but till no luck with scrolling
For the scrolling wallpaper issue this is how I am trying to select the wallpaper but till no luck with scrolling
]]>I need someone good at javascript, because I’m facing a nice difficulty… :
For my TaskerTask API, I have the object TaskerTask which has a var. The TaskerTask constructor is like :
function TaskerTask() {
var intent = new TaskerIntent();
}
Now, I have functions like :
TaskerTask.prototype.addAction = {
setVariable: function(varName, value, options) {
//blabla
this.intent.addArg(/* blabla */);
},
flash: function(text, options) {
//blabla
this.intent.addArg(/* blabla */);
}
};
Which make me able to do this :
var task = new TaskerTask();
task.addAction.setVariable(“VarName”, value);
The problem is : in the setVariable function, this isn’t defined anymore… and I need it….
I’m not sure it’s very clear.. ask if needed !
]]>Hey
Hey,
do you know if it’s possible and how to do the following :
On the picture below we see several “cards” with some that are stacked… It it possible to make theses stacked cards dynamic, so for example for the bottom big stacked cards, when we swipe to down, the front card goes away, and the back cards zoom in a bit…
Then reverse effect if we swipe to top : all cards zoom out a bit, and the front appear from the bottom…
Idea of structure : 1 panel per card, and 1 panel that contains all cards,which has the script on position changed event.
Originally shared by amin mizar
]]>Pierre Hébert You’ll need another update for Tasker scripting ^^
I want to do :
TaskerIntent.testStatus( LL.getContext() );
and I get a beautiful “TaskerIndent has no public instance field or method named “testStatus”…
and in the source of TaskerIntent (TaskerIntent.java available here http://tasker.dinglisch.net/invoketasks.html) we have :
public class TaskerIntent extends Intent {
//blabla
public static Status testStatus( Context c ) {
//blabla
}
}
sooo….. 🙂
]]>Hello all. I am using htc one m8 and using LL launcher 10.4.1 and I am unable to scroll wallpaper.. Please help…
Hi all.
var name= “parallax” //the label of the item
var amount = 0.5 //the parallax effect, between 0,1
var cont=LL.getEvent().getContainer();
var it=cont.getItemByLabel(‘vert_1’);
it.setPosition(cont.getPositionY()* amount+it.getHeight()* (amount+1),0);
]]>New kludge incoming :D
Create a Desktop by Script: this script provides the function createDesktop(name)
]]>http://www.pierrox.net/
ERROR : The requested URL could not be retrieved
do you have the same problem ?
]]>v10.5b3
Just a small update to fix some blocking issue:
– workaround for launcher stuck in extremely large grid drawing
– add LL.getScriptById
– add a dedicated Item name property: it replaces the item label, except for shortcuts. Existing methods Container.getItemByLabel, Item.getLabel and Item.setLabel still work but are deprecated. Existing scripts should not be broken. Use getItemByName, Item.getName and Item.setName instead.
This last modification is a bit sensitive. I tried to make enough tests to be confident that it won’t break anything, but my tester skills are quite low 😉
]]>I’m making a more user-friendly & easy-to-use API for Tasker, I wanted to have your reviews on it.
Here is the link for the folder with :
– ideas.js (with ideas for usability of the API)
– TaskerTask.js which is the API class (you’ll see the beginning)
others files are help files for me…
so, what do you think ?
]]>