now browsing by category

 

TrianguloY

TrianguloY

I just love your script maker, but I run into an error when I try to use the desktop bookmark action (“b”).

I’ll attach a screenshot of the error. It always points to line 58. (“skripti masin” means script machine in Estonian ;D )

]]>

Scroll animation: zigzag

Scroll animation: zigzag

Idea by TrianguloY

http://www.pierrox.net/android/applications/lightning_launcher/wiki/doku.php?id=script_animation_zigzag

]]>

Scroll animation: Shrink

Scroll animation: Shrink

http://www.pierrox.net/android/applications/lightning_launcher/wiki/doku.php?id=script_animation_shrink&#toggle_script

I am still creating new animations 😉

In this the items shrink together to the screen middle, and emerge out of it.

Video will come later.

]]>

I just made a video for the boing without overlap script (…

I just made a video for the boing without overlap script ( http://www.pierrox.net/android/applications/lightning_launcher/wiki/doku.php?id=script_llxperiment_boing_no_overlap)

It’s just for fun, but it looks hilarious 😉

Thanks to TrianguloY for the basic script.

]]>

wondering if its possible to script PNG sequences for animation?

wondering if its possible to script PNG sequences for animation?

]]>

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.

]]>

A question for Pierre Hébert & the script gurus.

A question for Pierre Hébert & the script gurus. Will the scripts that are created ever be included in LLX instead of having to be downloaded? Maybe an add-on app or something?

]]>

I just created a video for a relatively old script: the animtion bulldoze.

I just created a video for a relatively old script: the animtion bulldoze.

For original post look here: https://plus.google.com/115366157037831519359/posts/GXVcfSaWVRi

]]>

I just made a video for the folder dim script.

I just made a video for the folder dim script.

Landscape recording failed somehow a bit… just believe me it works also in landscape

]]>

/*

/*

Scripts for horizontal PageScroll with PageIndicator 

and simultaneously vertical “Content”Scroll 

independent from ScreenResolution.

Example for a 4 Page Desktop from Left to Right

Page Home Page Page 

“Pager” is a pined Panel with 3 Shortcuts (do nothing)

Definition should be:

First ShortcutWidth should be 3/4 of PanelWidth 

Second ShortcutWidth should be 1/4 of PanelWidth 

Third ShortcutWidth should be 3/4 of PanelWidth 

See Picture.

If you have e.g. 5 page like the width should 4/5 and 1/5 …

The Shurtcuts could be designed as you like.

Good Solution would be:

First and Third a small colored Line at the Bottom

Second a thicker colored Line at the Bottom

Above the “Pager” the pined Shortcuts “Go to specified Desktop&Postion” are placed.

“Content” is a pined Panel with as many VERTICAL pages as the Desktop. 

Like this:

Page

Home

Page

Page

Thanks to  TrianguloY  

I used a part  of his Script Minimal Page Indicator

http://www.pierrox.net/android/applications/lightning_launcher/wiki/doku.php?id=script_minimalistic_page_indicator

*/

// Script set on DesktopEvent PositionChange

var cont=LL. getDesktopByName(‘DesktopName’) ;

var width=cont.getWidth(); // DesktopWidth

var left = Math.round(cont.getBoundingBox().getLeft()/width);

var right = Math.round(cont.getBoundingBox().getRight()/width)-1; 

var page = Math.round(cont.getPositionX()/width);

//With zoom –> no page selected

if(cont.getPositionScale()!=1) page=NaN;

else {

// pager is the panel with PageIndicator

var p1=cont. getItemByLabel(‘pager’). getContainer() ;

// content is the panel with VerticalContent

var p2=cont. getItemByLabel(‘content’). getContainer() ;

var pages=1;

// Calculation how many pages

if (left<0){

pages=right+1-left;

}

else {

pages=right+1;

// Width of the PagerPanel

var p1w=p1.getWidth();

// Height of the ContentPanel

var p2h=p2.getHeight();

// Multiplier in Pagerpanel a 1/x of the panel

var p1mult=Math.round(p1w/pages);

// New Postion vor PagerPanel

var pos1=(page*-1)*p1mult;

// New Postion vor ContentPanel

var pos2=page*p2h;

 

// set new Positions

p1. setPosition(pos1,0);

p2. setPosition(0, pos2);

// Script set on DesktopEvent SwipeUp

var cont=LL. getDesktopByName(‘DesktopName’) ;

var width=cont.getWidth();

var left = Math.round(cont.getBoundingBox().getLeft()/width);

var right = Math.round(cont.getBoundingBox().getRight()/width)-1; 

var page = Math.round(cont.getPositionX()/width);

//With zoom –> no page selected

if(cont.getPositionScale()!=1) page=NaN;

else if (page

pos1=(page+1)*width;

cont. setPosition(pos1,0);

// DesktopPosition will Change > First Script will take action

// Script set on DesktopEvent SwipeDown

 //

var cont=LL. getDesktopByName(‘DesktopName’) ;

var width=cont.getWidth();

var left = Math.round(cont.getBoundingBox().getLeft()/width);

var right = Math.round(cont.getBoundingBox().getRight()/width)-1; 

var page = Math.round(cont.getPositionX()/width);

//With zoom –> no page selected

if(cont.getPositionScale()!=1) page=NaN;

else if(page>left) {

pos1=(page-1)*width;

cont. setPosition(pos1,0);

// DesktopPosition will Change > First Script will take action

Template where i used this:

http://werksmannschaft.de/wordpress/a-kind-of-vintage-llx-themetemplate/

or here 🙂

https://play.google.com/store/apps/details?id=de.werksmannschaft.lltemplate.akov

http://werksmannschaft.de/wordpress/scripts-for-horizontal-pagescroll-with-pageindicator-and-simultaneously-vertical-contentscroll/

http://werksmannschaft.de/wordpress/scripts-for-horizontal-pagescroll-with-pageindicator-and-simultaneously-vertical-contentscroll
]]>