October, 2014

now browsing by month

 

Pierre Hébert I know this is not an easy thing, but:

Pierre Hébert I know this is not an easy thing, but:

I would like to code scripts only in java and get rid of javscript.

I know this would break every other script written before, but it’s really annoying to code in two languages at once.

And: Isn’t it kind of weird to have a java app executing javascript which calls java?

I know this is probably not gonna happen, I just wanted to express that this is a great wish of mine.

]]>

something different ;-)

something different 😉

]]>

squares & rounds

squares & rounds

]]>

API page mistake.

API page mistake.

In propertySet page, under item properties the event handlers start with ‘i.’ (i.swipeUp, nor swipeUp)

http://www.pierrox.net/android/applications/lightning_launcher/script/reference/net/pierrox/lightning_launcher/script/api/PropertySet.html

http://www.pierrox.net/android/applications/lightning_launcher/script/reference/net/pierrox/lightning_launcher/script/api/PropertySet.html
]]>

Just playing around …

Just playing around …

original from Viggo Jorgen 

https://plus.google.com/u/0/+ViggoJorgen/posts/a6LEoLCkxa1

]]>

I want to set up my desktop so when I swipe a widget, it scrolls a panel.

I want to set up my desktop so when I swipe a widget, it scrolls a panel. I tried doing this with a desktop bookmark but can’t make it work. Will I have to use scripting for this or is there a workaround?

]]>

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

]]>

Hello People

Hello People

I installed the launcher yesterday, and I must say this thing is absolutely fantastic. It’s going to take a little while to get my head around it, but as soon as I do Nova and SS Launcher the original are getting uninstalled, for good.

I’m currently just getting my feet wet, and organizing my apps into folders in the app draw, but I’ve spend the last half hour looking for the setting to turn off the reflection in the folder, I found it on the desktop and in the main app draw but I can’t for the life of me find it for the folder.

Another question is, if I import the demo theme will it overwrite my app draw settings,  because that was a real slow job dragging all my apps one-by-one into the correct folder ? 

Regards

Shaun

]]>

OK had enough of Media Utilities not working properly and not been updated for a long time.

OK had enough of Media Utilities not working properly and not been updated for a long time. So I started a little project of my own.

Currently it outputs: Artist, Track, Album, Album Art and Artist Art.

Only works with Spotify, but will be adding support for others soon.

Has no media controls, until I can figure out to have tasker give more shortcuts in apps.

Need AutoNotification installed to work.

If anyone wants to test it out let me know.

]]>

Question: why this don’t work (as I expect) if the last line is commented?

Question: why this don’t work (as I expect) if the last line is commented? Maybe when you set an icon it is set a copy instead?

var e=LL.getEvent();

var it=e.getItem();

//get default icon

var imagen=it.getDefaultIcon();

var bmp_orig = imagen.getBitmap();

//a copy of the icon

var img = LL.createImage(bmp_orig.getWidth(), bmp_orig.getHeight());

img.draw().drawBitmap(bmp_orig, 0, 0, null);

img.update();

//set custom icon

it.setCustomIcon(img);

//paint bitmap

var bit=img.getBitmap();

bit.eraseColor(0xFFFFFFFF);

//dont work

//paint canvas

img.draw().drawColor(0xFF000000);

//dont work too

//save/update

img.update();

img.save();

//uncomment and it will work

//it.setCustomIcon(img);

]]>