Jappie Toutenhoofd
now browsing by tag
Lukas Morawietz I think the app picker from Multitool needs some tuning ;-)

Lukas Morawietz I think the app picker from Multitool needs some tuning
As MultiTool now supports bagdes for all apps, do not make the same mistake I made….

As MultiTool now supports bagdes for all apps, do not make the same mistake I made….
Originally shared by Jappie Toutenhoofd
Do not copy the style from the LL-builtin Badge to a MultiTool-badge. It will break it!
Rounded Corners PRO
Rounded Corners PRO
Auto theming / light or dark



Rounded Corners PRO
Originally shared by Jappie Toutenhoofd
Rounded Corners PRO
Auto theming / light or dark



In edit-mode the ‘binding’-tab will not stay when selecting a next item. It jumps to ‘misc’-tab.
Unlike (par example) box-tab, that one does stay when selecting another item.
]]>Hi Pierre Hébert
I am playing around with the SVG-stuff. But I cannot make it do what I want in Binding. My script works fine.
Here is the SVG:
viewBox=”0 0 99 99″ style=”enable-background:new 0 0 99 99;” xml:space=”preserve”>
d=”M50,5 c-20,100 20,100 0,0″/>
Here is the working Script :
var s = getEvent().getItem().getBoxBackground(‘n’).getSvgRoot().getElementById(‘hand’)
if (s.getTransform() == null)
{ s.setTransform(‘rotate(33 -50 -60)’)}
else
{ s.setTransform(”)}
But as the photo shows, it will not rotate wirh bindings. But the binding-options for the SVG #hand do populate.
Any suggestions?


There is probably an easy way… But.. How do I get ‘down’ if there is no way ‘up’??

There is probably an easy way… But.. How do I get ‘down’ if there is no way ‘up’??
Official Xperia 7.0 Rom
]]>Setting Font-size is not working properly when multiple items selected. (latest beta)
V14b2. Maybe an older bug..

V14b2. Maybe an older bug..
But in landscape the edit windows (text,icon,box,event.. etc.) are not in landscape format.
I have them (near) full-screen in portrait. Because of the above bug, i mis top and bottom part.
]]>What is the working, not deprecated alternative for below code?
function ClearList(item) {
var Ritems = item.getItems();
for (var j = 0; j < Ritems.getLength(); j++) {
item.removeItem(Ritems.getAt(j));
}
}
My guess was:
function ClearList(item) {
var Ritems = item.getAllItems();
for (var j = 1; j <= Ritems.length; j++) {
item.removeItem(Ritems[j]);
}
}
But the “removeItem” throws an error