Message: 2 Date: Sat, 26 Feb 2005 15:15:07 -0800 From: Richard Gaskin <[EMAIL PROTECTED]> Subject: scale w/ ticks and snap-to To: How to use Revolution <use-revolution@lists.runrev.com> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed

I'd like to have a scale in a range from 1 to 5 with 5 ticks on it, and
with snap-to behavior so this indicator will line up with the ticks.

Any combination of properties for this, or am I rolling my own?

--
  Richard Gaskin
  Fourth World Media Corporation
  ___________________________________________________________
  [EMAIL PROTECTED]       http://www.FourthWorld.com

Richard,

If you are willing to wait for mouseUp to see the snap then maybe this would help:

local tNearestInteger

on scrollbarDrag tPos
  set the startvalue of me to 1
  set the endvalue of me to 5
  put round(tPos) into tNearestInteger
  put tNearestInteger into field 1
end scrollbarDrag

on mouseUP
  set the thumbposition of me to tNearestInteger
end mouseUP

Jim

_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to