Logic Machine Forum
touch button without status - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: touch button without status (/showthread.php?tid=845)



touch button without status - Matt - 18.06.2017

Hello,

Is there a way to create a Icon only button in touch mode ?
For example to start a scene, or to stop a shutter.

Thanks,
Matt


RE: touch button without status - Erwin van der Zwart - 18.06.2017

Hi,

In the visu editor, use send fixed value on the element and send the scene value or a 0 or 1

BR,

Erwin


RE: touch button without status - Matt - 19.06.2017

(18.06.2017, 20:41)Erwin van der Zwart Wrote: Hi,

In the visu editor, use send fixed value on the element and send the scene value or a 0 or 1

BR,

Erwin

Hi Erwin,

Yes, that's what I do already, but on the touch display the value and checkbox is still visible.
I did select "Icon" only but it's only changing the usermode.

Thanks,
Matthieu


RE: touch button without status - Erwin van der Zwart - 19.06.2017

Hi,

The checkbox cannot be removed as it is your active element, the value can be removed with custom css.

BR,

Erwin


RE: touch button without status - Auzzii - 12.07.2017

Hi.

Is it possible to change button icon?





tnx


RE: touch button without status - AEK - 12.07.2017

(12.07.2017, 09:58)Auzzii Wrote: Hi.

Is it possible to change button icon?





tnx

yes it's possible via base64 coded icon.
that's example for changing slider position icon

Code:
.slider-handle{
padding: 0px 0px !important;
width:            61px !important;
height:           61px !important;
background-image: url("data:image/png;base64,iVBORw0K… (icone code)");
background-color: transparent !important;
border: 0px;
box-shadow: none !important;
}

on this site you can convert png icon to base64 code
https://www.base64-image.de/
that's result of code above:
[Image: 7.jpg]