I am a new user – and I hope this question is not too stupid.
I am a new user – and I hope this question is not too stupid.
I reviewed the pages and navigation video and I see that there is a next page action and a LL Widget for next page. However in the new user interface I can not find those items. Has that changed.
Thanks for the help.
]]>
< ![CDATA[
LL has an infinite number of pages on your desktop if you press menu then the pen icon you go into edit mode here you will see a load of rectangles on the screen aka pages pinch zoom to see more to add an item to a page then exit edit mode and you will see you can now scroll to the new page with the item.
What your looking for is the bookmark shortcut. menu/+ button/shortcut/go to desktop and position
]]>
< ![CDATA[
Or, you can add to desktop some items, set to this item pinned option, and for this items set this scripts (for every item only one script) to tap gestures, or for one item set gestures swipe to left, to right, to up, to down:
//script to go right
var c=LL.getEvent().getContainer();
c.setPosition(c.getPositionX()+c.getWidth(),c.getPositionY(),c.getPositionScale(),true);
//to left
var c=LL.getEvent().getContainer();
c.setPosition(c.getPositionX()-c.getWidth(),c.getPositionY(),c.getPositionScale(),true);
//up
var c=LL.getEvent().getContainer();
c.setPosition(c.getPositionX(),c.getPositionY()-c.getHeight(),c.getPositionScale(),true);
//down
var c=LL.getEvent().getContainer();
c.setPosition(c.getPositionX(),c.getPositionY()+c.getHeight(),c.getPositionScale(),true);
]]>
< ![CDATA[
Thanks for the suggestions. I appreciate the help
]]>