scrollbarPageInc

Typemessage
DictionaryLCS
LibraryLiveCode Script
Syntax
scrollbarPageInc <pNewPosition>
Associationsscrollbar
Summary

Sent to a scrollbar when the user clicks below or right of the scrollbar thumb, scrolling forward one screenful.

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

The new position of the scrollbar thumb.

Example
on scrollbarPageInc theMovieNumber
  set the filename of player "Display" \
     to line theMovieNumber of field "Movies"
end scrollbarPageInc
RelatedKeyword: scrollbar
Property: pageIncrement
Message: scrollbarLineInc, scrollbarDrag
Glossary: scrollbar thumb, message, handle
Description

Handle the scrollbarPageInc message if you want to respond to the user clicking in the gray region below or to the right of the scrollbar thumb.

Dragging the scrollbar thumb does not send a scrollbarPageInc message.

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

Tagsui