Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I detect if someone is scrolling in a scrolling frame?

Asked by
trecept 367 Moderation Voter
7 years ago

I have a custom drag script, but whenever I click on the scroller in a scroll frame to scroll up, it also drags the whole GUI. Any way to detect this and not drag if the user clicks on the scroller?

1 answer

Log in to vote
1
Answered by 7 years ago

Store the ScrollFrames previous CanvasPosition in a Vector2 variable and compare it to it's current. If it's different from it then the player is scrolling.

01--LocalScript
02local prevPosition = Vector2.new()
03local scrollFrame = script.Parent
04prevPosition = scrollFrame.CanvasPosition
05 
06local runService = game:GetService("RunService")
07 
08function checkPos()
09    if (prevPosition-scrollFrame.CanvasPosition).magnitude > 0 then
10        --Do whatever
11    end
12    prevPosition = scrollFrame.CanvasPosition
13end
14 
15runService:BindToRenderStep("checkPos",0,checkPos)
Ad

Answer this question