Advanced Search

Search Results (Searched for: )

  • JT
  • JT's Avatar
23 Sep 2025 16:13

FlexGui touch - FSC-like myOwn tab from ext UI file

Category: Flex GUI

I just tried this and it works fine
from functools import partial

def startup(parent):
	parent.slider_1.valueChanged.connect(partial(slider_1, parent))
	parent.slider_2.valueChanged.connect(partial(slider_2, parent))

def slider_1(parent):
	parent.label_1.setText(f'{parent.slider_1.value()}')
	if parent.slider_1.value() >= 15:
		parent.slider_2.setMinimum(80)
	else:
		parent.slider_2.setMinimum(0)

def slider_2(parent):
	parent.label_2.setText(f'{parent.slider_2.value()}')
  • JT
  • JT's Avatar
23 Sep 2025 15:38

FlexGui touch - FSC-like myOwn tab from ext UI file

Category: Flex GUI

That would have to be done in your custom Python code using the sliders valueChanged() signal to trigger a call to your function and use the setMinimum() function of the slider to change the minimum set point.

JT
Displaying 13351 - 13353 out of 13353 results.
Time to create page: 0.584 seconds
Powered by Kunena Forum