Properties
Category
English
Similar Topics
Statistics
Comments
4
Participants
3
Subscribers
4
Votes
1
Views
900
Share
Answered
Hi everybody,
I searched the old threads but did not found answers to this question.
I have a slider that is used to limit the time. I wanted to make the start/stop button for the time slider invisible, because I do not want the user to stop the time-flow.
I tried to "bring" the start/stop button to the other grafic-view but this does not work.
Any ideas? Is this possible or not?
Birgit
- GeoGebra
- Help
- Partners
-
Contact us
- Feedback & Questions
- This email address is being protected from spambots. You need JavaScript enabled to view it.
- +43 677 6137 2693
© 2023 International GeoGebra Institute
do all speeds of sliders dependents eg: speed for slider a =b being b=1, speed for slider c=2b
then the button is invisible
Hi,
use a boolean variable named "show", to show/hide button (properties),
and in the ONCLIC script of the button:
SetValue[show,false]
and in the OnUpDate script of the slider "time" :
SetValue[ show , If[ time=="limit of time" , true , show ] ]
...
Comments have been locked on this page!