Page 1 of 1
					
				carousel for android
				Posted: Fri Oct 02, 2020 1:34 am
				by klamp
				is there an "android carousel library" for android. I want to make like the picture I attached. But I found no answer. 
Thanks for helping

 
			
					
				Re: carousel for android
				Posted: Fri Oct 02, 2020 7:52 am
				by richmond62
				Can you explain what you mean by a 'carousel' exactly?
			 
			
					
				Re: carousel for android
				Posted: Fri Oct 02, 2020 8:21 am
				by Klaus
				
			 
			
					
				Re: carousel for android
				Posted: Fri Oct 02, 2020 1:41 pm
				by klamp
				@klaus
thanks for helping
@ richmond62
I mean maybe like this article
https://medium.com/@lobothijau/create-c ... bf5ef500a9

 
			
					
				Re: carousel for android
				Posted: Fri Oct 02, 2020 5:33 pm
				by jacque
				This wouldn't be too hard. Lock the screen for visual effect in rect (see dictionary for that,) show the next image, then unlock the screen with a visual effect, maybe reveal right or reveal left.
The dictionary lists the visual effect options you can try.
			 
			
					
				Re: carousel for android
				Posted: Sat Oct 03, 2020 7:20 pm
				by richmond62
				Carousel for desktop that can be easily adapted:
-
-
New version linked in new post lower down.
 
			
					
				Re: carousel for android
				Posted: Sat Oct 03, 2020 8:13 pm
				by richmond62
				
			 
			
					
				Re: carousel for android
				Posted: Sun Oct 04, 2020 12:25 pm
				by klamp
				thanks richmond62. you really help me.
			 
			
					
				Re: carousel for android
				Posted: Sun Oct 04, 2020 7:00 pm
				by richmond62
				
-
Added some "auto" buttons . . .
Button "
AUTO LEFT":
Code: Select all
on mouseUp
   put fld "PIXN" into PSTART
   repeat until PSTART < 2
      send "mouseUp" to button "BK"
      wait 3 secs
      put fld "PIXN" into PSTART
   end repeat
end mouseUp