bpm91
Advanced OT User
- Joined
- May 23, 2019
- Messages
- 1,046
- Solutions
- 7
- Reaction score
- 177
- Location
- Brazil
- YouTube
- caruniawikibr
Countwindow.otui

When walking, this window should close, but it stays open even when walking, does anyone know which file or how to fix this?
otcv8
LUA:
CountWindow < LiveMainWindow
id: countWindow
!text: tr('Move Objects')
size: 236 136
SpinBox
id: spinBox
anchors.left: parent.left
anchors.top: parent.top
width: 1
height: 1
phantom: true
margin-top: 2
focusable: true
opacity: 0
ItemClean
id: item
anchors.top: parent.top
anchors.left: parent.left
margin: 14 0 0 13
focusable: false
virtual: true
Label
!text: tr('Set the number of' .. '\n' .. 'items you want to move:')
text-auto-resize: true
anchors.bottom: next.top
anchors.left: next.left
margin-bottom: 6
margin-left: -1
HorizontalScrollBar
id: countScrollBar
anchors.bottom: next.top
anchors.left: parent.left
anchors.right: parent.right
margin: 0 14 21 59
focusable: false
HorizontalSeparator
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
margin: 0 9 34 9
ClassicButton43
id: buttonOk
!text: tr('Ok')
anchors.right: next.left
anchors.bottom: parent.bottom
margin-bottom: 6
margin-right: 11
focusable: false
ClassicButton43
id: buttonCancel
!text: tr('Cancel')
anchors.bottom: parent.bottom
anchors.right: parent.right
margin-bottom: 6
margin-right: 9
focusable: false

When walking, this window should close, but it stays open even when walking, does anyone know which file or how to fix this?
otcv8