Thanks, Ramesh, but that's exactly what I'm doing: scrollByLine, and that's what I'm trying to avoid. Like I said, scrolling by line at a time is too jerky, when the font is large. That's why I was looking for a way to scroll a few _pixels_ at a time.

Thanks for writing anyway. It's good to know people are willing to help. If you know of a way to scroll smoothly, please drop me a line.

S.

At 04:20 PM 1/4/2001 +0530, you wrote:

Hi Slava,

Check out the scrollTop member property under help, using this you can
scroll down or up pixel wise.

-- script for scroll button
property pScroll

on beginSprite me
  pScroll = FALSE
end

on mouseDown me
  pScroll = TRUE
end
on mouseUp me
  pScroll = FALSE
end

on exitFrame me
  if pScroll then
    the scrollTop of member 1 to the scrollTop of member 1 + 1
--scroll down
--the scrollTop of member 1 to the scrollTop of member 1 - 1
  end if
end

regards
---------------------------------
Ramesh CT
Office: 91 80 6665948 Extn:2169
Mobile: 9844117802
[To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]) Lingo-L is for learning and helping with programming Lingo. Thanks!]

Reply via email to