June, 2014

now browsing by month

 

The problem of Tomáš Valůšek triggered an old idea I had.

The problem of Tomáš Valůšek triggered an old idea I had. I like the work of Jeff Ludlow but some work simply has too little contrast to really work outside in the sunlight.

Would it be possible to extent the choices in the line of ‘normal’, ‘selected’, ‘focussed’ with ‘contrast’. And then when LLX reads a high value from the light-sensor, it switches to ‘contrast’ colors?

Afaik, LLX would set another “Worlds first launcher with …”

]]>

klassik

Originally shared by gerd reuter (werksmannschaft)

klassik

Lightning Launcher eXtreme \ Zooper Widget Pro \ Simple Rss Widget \ Tasker \ Media Utilities \ LLX-Lockscreen

Video:

klassik

]]>

Anyone got a script to update zooper widgets? While I’m making them they take too long to refresh to new mods.

Anyone got a script to update zooper widgets? While I’m making them they take too long to refresh to new mods.

]]>

Hello, here is my first screen upload on G+.

Hello, here is my first screen upload on G+.

Made with Llx and Zooper. Thanks to Lukas Morawietz and Bogdan Tautu for their scrollbar script.

]]>

Am new to lighting luncher.

Am new to lighting luncher. I am wondering how can I removed the line from setting and how to extend it all the way on the desktop. is they a way to hide the line as well if I want too.

]]>

I’m trying to make a two screen setup with different wallpaper on each screen so that when I scroll back and forth…

I’m trying to make a two screen setup with different wallpaper on each screen so that when I scroll back and forth between the two screens, the wallpaper changes. Is this possible, and how can I do that?

]]>

Some time ago, I made the decision to unpublish the free version of Lightning Launcher.

Some time ago, I made the decision to unpublish the free version of Lightning Launcher.

Because at that time I was worried about other personal stuff, I failed to give a full explanation. I am sorry about.

A few minutes ago someone asked on Facebook where the LL app was. I replied quickly, and since the answer might shed some more light on this decision, I am quoting the post here. Ok, maybe I should have done this earlier here, but hey such is life!

So here is an excerpt in case someone is interested:

I don’t want paid users, I want to be able to develop the app further, this is as simple as that. Please understand the gap between user expectations and the energy needed to fulfil them. On one hand building an app, even a small app, requires a lot of time, not only to make the software, but also maintain it, publish updates, answer users questions, and so on (I am sure you already know that). On the other hand the time spent on building an app is time that cannot be spent on other things. As a standard developer, I have the same activities as any other standard person: work, family and spare time. And as a standard developer I need to work to pay my bills. When I don’t work I don’t get money, so the equation is simple: if I want to do something other than the usual work (without losing too much time for my family and spare time…), then this thing need to bring some money to pay the bills. FYI when an app is priced $1, a french developer like me will receive $0.46, or 0.33€ (one liter of petrol is 1.5€). I am sure I speak for a lot of mobile apps developers, not only for myself. This is said with no animosity, but so that things are clear and can be understood. Regarding the freemium model, it does not work with LL, because the old version was already a full version.

Link to the FB post: https://www.facebook.com/LightningLauncher/posts/768270299884260

]]>

hi, is it possible to edit the command?

hi, is it possible to edit the command? i need to toggle the notification bar and open the folder the same time ( swipe to the right: toggle notification bar & open folder) is it possible?   

]]>

Pinch gestures

Pinch gestures

This script will allow you to launch custom scripts/items with the pinch in / pinch out gestures.

I couldn’t test myself a lot, but it should work. Anyway it only move the desktop position so your items are safe 😉

Instructions: set it in the position changed event. And allow zoom (it is necessary to catch the events, but it won’t zoom)

By default it will launch the items in the same container labeled “pinch in” , “pinch out” respectively. But of course you can change it if you know to run custom code (it is commented)

——————————————————–

var cont = LL.getEvent().getContainer();

var scal=cont.getPositionScale();

var date = LL.getEvent().getDate();

var data = JSON.parse(LL.getScriptTag())||[-1,cont.getPositionX(),cont.getPositionY()];

if(scal!=1){

if(date-data[0]>250){

if(scal<1){

//when pinch in

var item=cont.getItemByLabel(“pinch in”)

if(item!=null)item.launch();

}else{

//when pinch out

var item=cont.getItemByLabel(“pinch out”)

if(item!=null)item.launch();

}

}

cont.setPosition(data[1],data[2],1,false);

LL.setScriptTag(JSON.stringify([date,data[1],data[2]]));

}else{

LL.setScriptTag(JSON.stringify([-1,cont.getPositionX(),cont.getPositionY()]));

}

]]>

I thought this was reported before, but it still exist so I need to report it.

I thought this was reported before, but it still exist so I need to report it.

When using setCell(,,,) in a folder, when you close and re open it the items stay in the previous position. The setCell command seems to not save the items.

Only in folders, it works fine in desktops (I didn’t try in panels)

]]>