Beginner_O
15 years agoNew Contributor
THICKNESS (incr/decr) is realized as ScrollBar. Each click: - or+ '1'
I test the BETA-version of Graphical Engineering Station (Black Box).
TC = 7.52-trail version. TC lang.= VBScript. Application=C++, using Codejock SoftWare.
As I can see, the functionality THICKNESS (increase/decrease) is realized as ScrollBar. Each click adds/subtracts ‘1’. See attached picture.
But the script did not reflect any movement of the ScrollBar, so it does not affect the line-thickness. How can I fix this problem?
Example: We’d like to change the line-thickness from 3 to 7. The following script does not work.
Sub Test6
Dim scrollBar
Set scrollBar = Aliases.SimClient.dlg.ScrollBar
scrollBar.wPosition = 0
scrollBar.wPosition = 0
scrollBar.wPosition = 0
scrollBar.wPosition = 0
End Sub