I have two scroll views, both same size.  I have them synchronized  using scrollposition, so that when either is scrolled, the scrollposition of the other one is set to equal. It works fine. I was concerned as it seems as though I am creating a loop, but apparently that is not the case. Is this a dangerous way to do this? I know I could put all the information on one scrollview, but I have a reason to keep them separate/
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
			
			
			
				B4X:
			
		
		
		sub sv1_scrollchanged(Position as int)
     sv2.scrollposition=sv1.scrollposition
end sub
sub sv2_scrollchanged(Position as int)
     sv1.scrollposition=sv2.scrollposition
end sub 
				 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		