scrollbarEnd

Typemessage
DictionaryLCS
LibraryLiveCode Script
Syntax
scrollbarEnd <pEnd>
Associationsscrollbar
Summary

Sent to a scrollbar when the user Shift-clicks its increase arrow.

Introduced1.0
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
pEnd

The new position of the scrollbar thumb. This is the same as the scrollbar's endValue property.

Example
on scrollbarEnd -- use a scroll bar to navigate among cards
  visual effect scroll up
  go last card
end scrollbarEnd
RelatedKeyword: scrollbar
Glossary: scrollbar thumb, message
Message: scrollbarDrag, scrollbarLineInc, scrollbarBeginning
Description

Handle the scrollbarEnd message if you want to respond to the use of Shift-click to move the scrollbar thumb directly to the end (the bottom or right) of the scrollbar.

Dragging the scrollbar thumb to the end position, or otherwise moving it to the end, does not send a scrollbarEnd message.

If the scrollbarEnd message is not handled, a scrollbarDrag message is sent in addition.

Tagsui