AdvSmoothTileList suggestions/questions

Hi,


I have few issues with AdvSmoothTileList I dont know how to solve:
1. animation when switching pages with bullets - how to completely turn off animation (sliding) and do the page switch instantly - using bullets?
2. second option - if I want to use bullets only for indication, how to do it?

and some suggestions (maybe for new component):
fixed tile size with auto flow option

Hi, 


1) Set AdvSmoothTileList1.AnimationFactor := 0;
2) The bullets are always interactable. We'll investigate if we can add support to turn off interaction for bullets.

Hi,


1) on design time you cannot set to 0, from code you can, but I don't see any change in behavior. It still slides through pages

With the following code you should be able to disable all animation:




procedure TForm1.FormCreate(Sender: TObject);
begin
  AdvSmoothTileList1.AnimationFactor := 0;
  AdvSmoothTileList1.PageAnimationFactor := 0;
end;

thank you,

I did as you suggested, the animation is gone, but it's not exactly what I meant
Please see the video:
https://youtu.be/e7gNSGCBB7c
when I click bullet which is for example 10 pages away, the component goes through all pages in between. What I want to achieve is instant jump to selected page.

Hi, 


We have investigated this here and have applied an improvement. The next version will address this.