Hello 
I recently download AC, and it`s really great tool for me.
I trying to make camping stove fire actionlist, but met some problem.
If you don`t mind, i need some help.
This is what i want to make
- Using Slide UI to fire the stove.
- After slide handle get reach to max, the bool parameter 'Stove Turn On' turn to '1'.
- If 'Stove Turn On' == True, Text pop-up 'Put the pan on stove'
Images is here.
https://imgur.com/a/5eYe8My
Problem
- I don`t know how to get value from slider for using in action list.
- I use slider because i want the flame size and lever rotation of stove will be changed along the slide value.
- I make this using c#, but it`s hard to use onDownload, so decided to roll back to only use action list.
- How can i make or connect slider value to action list parameter.
- To make it simple, i want to know how can do this, without flame size or lever rotation.
- [ Slide reach to 10, then text pop-up. ]
I think it is quite simple for somebody, but not easy for me.
I would really happy to get answer 
Best Regard.
Youngjin
Comments
Welcome to the community, @Youngjin.
You can only have an ActionList run when a Slider's value is changed if the Slider is connected to AC's Menu Manager as a Slider element.
If this is the case, you can set the Slider element's Slider affects property to Float Variable, so that it's value is linked to a Global Float Variable. Inside the ActionList on change ActionList, you can then use a Variable: Check Action to check if this float variable is 10.
However, this method is not the only approach - you can also use a custom script to update the Bool variable automatically when the Slider's value is changed, without it needing to be connected to the Menu Manager. Here's an example script you can attach to it that should do it:
Wow
It works! Really thanks.
Thanks for your kindness