Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ General
➜ scroll position sometimes not at bottom during OnPluginDrawOutputWindow?
|
scroll position sometimes not at bottom during OnPluginDrawOutputWindow?
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Fiendish
USA (2,555 posts) Bio
Global Moderator |
| Date
| Sun 12 May 2019 12:22 AM (UTC) Amended on Sun 12 May 2019 02:04 PM (UTC) by Fiendish
|
| Message
| During rapid output from the server, checking if the main output is scrolled all the way to the end sometimes returns false inside the OnPluginDrawOutputWindow callback.
The code I'm using to check if the scroll position is at the end is:
function at_bottom()
cur_scroll_position = GetInfo(296)
text_rectangle_height = GetInfo(293) - GetInfo(291)
font_height = GetInfo(212)
total_output_lines = GetInfo(224)
max_scroll_position = ((total_output_lines-1) * font_height) - text_rectangle_height
return cur_scroll_position >= max_scroll_position
end
Is there a better way to check whether scrolling is currently locked to the bottom that doesn't sometimes fail inside OnPluginDrawOutputWindow when new output is coming in? |
https://github.com/fiendish/aardwolfclientpackage | | Top |
|
| Posted by
| Fiendish
USA (2,555 posts) Bio
Global Moderator |
| Date
| Reply #1 on Sun 12 May 2019 02:39 PM (UTC) |
| Message
| | I think it might work if I combine that with a check for whether pause is active or not. |
https://github.com/fiendish/aardwolfclientpackage | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #2 on Sun 12 May 2019 09:58 PM (UTC) |
| Message
| | The pause check should be pretty reliable. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
9,765 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top