now browsing by tag

 
 

Having an issue with bindings updating/displaying.

Having an issue with bindings updating/displaying.

I have a Tasker task parsing an RSS feed which is working fine – displays an alert with all the correct data. It sets several lighting variables.

I have several text items with bindings & the variables all appear in the “other” category so I can set.

When I run the task (by shortcut or in Tasked) the text items don’t change. If I edit the item and edit the binding, press OK without changing anything the text changes to the correct value.

Am I missing something or is there a better way of handling?

]]>

Jacob Barton’s (sorry struggling to find the right JB to quote directly) post on creating a generic template

Jacob Barton’s (sorry struggling to find the right JB to quote directly) post on creating a generic template

https://plus.google.com/111836669294532396593/posts/geRuzBRarHG

I wondered what you could create just using LLX, some GAPPs which most set ups would have and not being to technical (scripting etc…)

Here’s my attempt

]]>

So here is my work in progress for passing variables directly to Zooper.

So here is my work in progress for passing variables directly to Zooper.

I use the folder Resume event to run the script.

I’m passing the folder name to a text variable LFOLDER and using a text element with the variable #TLFOLDER#

I’m also passing “on” to variable named the same as the folder. In Zooper it using an iconset I created ( one for each folder) & reading the variable uses either the white or green icon.

I have another script send a”” to the text variable and “off” to the folder variable.

var fldr = LL.getEvent().getContainer().getOpener().getLabel();

var intent = new Intent(“org.zooper.zw.action.TASKERVAR”);

var bundle = new Bundle();

bundle.putInt(“org.zooper.zw.tasker.var.extra.INT_VERSION_CODE”,1)

bundle.putString(“org.zooper.zw.tasker.var.extra.STRING_VAR”, “LFOLDER”);

bundle.putString(“org.zooper.zw.tasker.var.extra.STRING_TEXT”, fldr);

intent.putExtra(“org.zooper.zw.tasker.var.extra.BUNDLE”, bundle);

LL.getContext().sendBroadcast(intent);

var intent = new Intent(“org.zooper.zw.action.TASKERVAR”);

var bundle = new Bundle();

bundle.putInt(“org.zooper.zw.tasker.var.extra.INT_VERSION_CODE”,1)

bundle.putString(“org.zooper.zw.tasker.var.extra.STRING_VAR”, fldr);

bundle.putString(“org.zooper.zw.tasker.var.extra.STRING_TEXT”, “on”);

intent.putExtra(“org.zooper.zw.tasker.var.extra.BUNDLE”, bundle);

LL.getContext().sendBroadcast(intent);

]]>

It must be simple but I can’t seem to get the folder label in a script.

It must be simple but I can’t seem to get the folder label in a script.

I can send the Id to Zooper no problem but really want to send the label.

]]>

I signed up to Beta a couple of days ago but hasn’t updated yet. It says I’m a tester.

I signed up to Beta a couple of days ago but hasn’t updated yet. It says I’m a tester.

Running MultiRom with stock (plus Android L not with LLX) could this be the issue?

Any ideas greatly appreciated.

]]>

I want to pass values to a Tasker variable (to be used by Zooper) when a folder opens and closes.

I want to pass values to a Tasker variable (to be used by Zooper) when a folder opens and closes.

Is this possible and if so any guidance?

Tried to search posts but G+ not so friendly.

]]>

Just flashed Android L and about to run LLX.

Just flashed Android L and about to run LLX.

Anything I should watch for?

Happy to do some testing if needed but my tech skills are limited so might need guidance

]]>

Is it possible to “jump” to a page rather than scroll.

Is it possible to “jump” to a page rather than scroll.

I have several scripts which scroll with no problem but would prefer them to just appear.

]]>