Dynamically set the maximum horizontal pointer scale in the maze?

I want to create a primitive movie player in Labview. I want the user to be able to upload a movie and have a slider for selecting frames. So I want the slider range to move from zero to N, where N is the number of frames in the movie.

How to configure a software slider programmatically?

I do not see any inputs to the slider, only one output.

Here is an example of the Horizontal Slide Pointer panel taken from the NI website. The slide panel is located in the upper right corner of the image.

enter image description here

+3
source share
1 answer

Right-click the slider:

Create -> Property Node-> Data Entry Limits -> Maximum
Create -> Property Node-> Scale -> Range -> Maximum

This creates property nodes that you can connect to set the maximum limit of the slider.

+12
source

All Articles