Question

I'm searching for a visual component such as video progress bar / seek bar or something like this:

Seek bar are there something like it ?

Était-ce utile?

La solution

From Benjamin van Ryseghem

| slider |

slider := SliderModel new.
slider 
    min: 0;
    max: 100;
    whenValueChangedDo: [:value | slider label: value asString ].
slider openWithSpec

Autres conseils

You could use a PluggableSliderMorph for this purpose:

PluggableSliderMorph

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top