Creation/Dev/Script/Client/GuiTextEditSliderCtrl
From Graal Bible
Inherits GuiTextEditCtrl.
Description
This control basicly displays a number and two arrows where you can click on to increase or decrease the number. With format you can display some text around the number (e.g. format="$%d" to display the number like $1).
Variables
allowedit - string
format - string
increment - float
range - string
value - float
Example
new GuiTextEditSliderCtrl("Test_EditSlider") {
profile = GuiBlueTextEditSliderProfile;
x = 10;
y = 10;
width = 160;
height = 20;
format = "Edit %d Slider";
range = {1,200};
value = 123;
}