get selection order?

is there a way to get a list of selected vertices in the order they got selected by the user?

Hello Kakapo

I must admit I havn’t tried vertices. But for objects the list order depends on the selection order.
as in:

import Blender
objA = Blender.Object.GetSelected()[0] #last selected
objB = Blender.Object.GetSelected()[1] #selected before

cheers Smitje

thanks!

i need the same for vertices but i think this isn’t possible. probably i will have to forget my script idea. :-?