YIPPEY...a new aum

but george, by the answer to
How can I get a slider to use absolute values such as 1, 2, 3, 4 instead of 1.1 1.2 ... etc?

you could make the script easier with:
Code:
function slider_startup()
{
while (1)
{
while (mouse_left) {wait (1);} // wait until the player releases the left mouse button
resolution=int(resolution+0.5);//just an easy round-function
wait (1);

}

}




Last edited by Scorpion; 03/31/07 09:27.