Selection color in listview before erase the line

Hello, here is my problem:
I have a listview of people, when I select a value, it is deleted from the list.
What I want is for the selected value to be highlighted a fraction of a second before disappearing.
In the afterpicking block, I put a delay before the deletion procedure but it does not work.
Do you have any idea?


Merci, have a good day

Try a larger delay, for example 1000 milliseconds

Also generally a wait method is not recommended because it blocks the user interface

See here how to wait correctly

Taifun

Hello, thank you for your answer.
I managed to do what I wanted by taking out the actions to be executed from the "after picking" event.
The event launches the clock and it is when it is active that the actions are set

Just move the actions to the Clock Timer Block. Example:

ListViewHighlight.aia (2.7 KB)

Thank you for your reply. It's work.