What's the Best Way to Scroll ?

codeflawless

New member
I'm creating a Bitcoin faucet collector and I need a way to scroll the screen. I've tried UI interaction and gesture with mapping both locations and putting the time interval and it's not working any suggestions?
 

thisismyshine

New member
Is your time interval long enough? Sometimes things take longer to load than it looks like they do, so scrolling would be pointless. Are you sure your gesture is taking? For whatever reason, when I need to do a scroll, I can't get the ui to map my touches and have to enter the information manually. Example, for a basic scroll up function, I have to do this:

Screenshot_20210417-072646.png
 

codeflawless

New member
Is your time interval long enough? Sometimes things take longer to load than it looks like they do, so scrolling would be pointless. Are you sure your gesture is taking? For whatever reason, when I need to do a scroll, I can't get the ui to map my touches and have to enter the information manually. Example, for a basic scroll up function, I have to do this:

View attachment 306
4 that's what I did. This is what I've got so far but it's not working it loads the website fine, it just doesn't do the scrolling
 

thisismyshine

New member
4 that's what I did. This is what I've got so far but it's not working it loads the website fine, it just doesn't do the scrolling
I saw elsewhere on the forums here that an accessibility option being toggled on often helps with any ui interaction issues ... Give this a try? I went ahead and did so, but haven't had a chance to test yet if it fixed any of these issues for me. This thread here.
 

thisismyshine

New member
Not sure if you're still kicking around, but figured I'd put this here in case the question ever comes up again. Make sure you don't have any other apps getting in the way. I have multiple apps that can run over other apps, but one I recently installed seemed to be persistent and because it was always running, the UI Interaction no longer worked ... Because it was interacting with the persistent app writing over everything else, not with what I needed it to.
 
Top