hello everybuddy. I am wandering how to create item with the ‘run a script’ entry? Can anyone help me :)
hello everybuddy. I am wandering how to create item with the ‘run a script’ entry? Can anyone help me 🙂
« Hi! (Previous Post)
(Next Post) Newbie question: I previously had three desktops, one for work, one for home, and one for driving. »
Add item -> Lightning action -> Run script
Lukas Morawietz thank you very much. and then I want to run the script to create an item automaticlly. can you help?
Lukas Morawietz Sorry for my poor english 🙂
http://www.pierrox.net/android/applications/lightning_launcher/script/reference/net/pierrox/lightning_launcher/script/api/Container.html#addShortcut(java.lang.String,android.content.Intent,float,float)
a complete example could be:
var intent = new Intent(put_something_here_according_to_your_need_and_the_documentation);
LL.getCurrentDesktop().addShortcut(“hello”, intent, 0, 0);
Pierre Hébert thank you ,this is what I want.