> On Nov 20, 2016, at 11:03 AM, J. Landman Gay <jac...@hyperactivesw.com 
> <mailto:jac...@hyperactivesw.com>> wrote:
> 
> does that mean the hscroll property of the mobile scroller must be true?

No, the hScroll prop is still false, you are just detecting and using 
(diverting) the information that the scrollerDidScroll message would have used 
to set the hScroll, but it never gets set.

This is the handler:

on scrollerDidScroll hOffset, vOffset // Scroll or Swipe Detect //
 
   if the hScroll of group "scrollArea" <0 then ##-->> Detects the Horiz swipe 
<<--##
      moveBack
   else if the hScroll of group "scrollArea" >0 then
      moveForward
   end if
   
   set the vScroll of group "scrollArea" to vOffset ##-->>  Scroll the field 
vertically <<—##

end scrollerDidScroll


It is just a workaround, and it’s not perfect, but may keep you going until the 
main problem is fixed.

Paul
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to