How can I sort sprites in order from left to right?

I tried and couldn’t figure it out, but I suspect it involves lists and the “minimum of ___” reporter

Indeed. Make a list of two-item lists in each of which the first item is the sprite’s x position and the second is the sprite itself. Then
untitled script pic (7)
is the sorted list of sprites.

do you mean making the list display its item horizontally rather than vertically, or sorting the sprites from their x position (horizontal/left-right position) on the stage?

the second one

I did this:


(although I guess dardoro’s solution is more descriptive)

Right, you can use the sort block in the list utilities library to sort the sprites by x position

oh so that’s where that extension was from…

oh so that’s where that extension was from…

That’s why its name starts “lst_”! :~)