Difference between revisions of "Button"

From HSYCO
Jump to navigation Jump to search
Line 66: Line 66:
  
 
=== OOOOrrr ===
 
=== OOOOrrr ===
 
=== Common attributes ===
 
{| class="wikitable"
 
!Name
 
!Value
 
!Description
 
!Default
 
|-
 
|pos
 
|
 
*x<y>y<y>
 
*r<r>c<c>
 
|Position specified as x/y coordinates or row/columns.
 
E.g. x-5y10 or r1c2
 
|<nowiki>-</nowiki>
 
|-
 
 
|visible
 
|
 
*true
 
*false
 
|Object visibility
 
|true
 
|-
 
 
|blink
 
|
 
*true <nowiki>|</nowiki> slow
 
*fast
 
*false
 
|Blinks the object.
 
There are two possible speeds: fast (same as true) or slow.
 
 
False stops the object's blinking.
 
|false
 
|-
 
 
|opacity
 
|0.0-1.0
 
|Object opacity. 0: not visible, 1: fully visible.
 
|1
 
|-
 
 
|focus
 
|
 
*true
 
*false
 
|Focus field
 
|false
 
 
|}
 

Revision as of 18:45, 19 December 2013

Controls a light or automation device.

If the button object is connected to a device or light that allows it, a long press on the button will open a popup with a slider. A second long press will close the popup. If specified on SystemTopo, it will show a thumbnail on mouse over or touch.

Parameters

  • address: device data point name
  • position: the position of the button. Use the pixels or rows and columns coordinates format
  • label: the text label on the button. Can contain HTML tags.

index.hsc

(button <address>; <position>; <label>)

UI Attributes

Template:UI Object Attributes Common Template:UI Object Attributes Common Label


Ooooor:

Common attributes

Name Value Description
pos x[y]y[y] Position specified as x/y coordinates or row/column.

E.g. x-5y10 or r1c2

r[r]c[c]
visible true Object visibility
false
blink true | slow Blinks the object.

There are two possible speeds: fast (same as true) or slow.

False stops the object's blinking.

fast
false
opacity 0.0-1.0 Object opacity. 0: not visible, 1: fully visible.
focus true Focus field
false

OOOOrrr