Ah, that's a bit different.
Here's one way.
https://www.dropbox.com/s/k4pdvewd4qbp4y8/shuffle_combinations.capx?dl=1
And modified if you want a specific combination included in the mix.
https://www.dropbox.com/s/fv39mxvfsx41vsn/shuffle_combinations_with_a_predefined.capx?dl=1
Thank you R0J0hound
I just saw your examples. In this case, the 3 answer options are being drawn, right? Is it possible to include in this same process the original password (randomly drawn letters that will dictate the original sequence (scrambled password)) and the correct password (letters that represent the password in the right order)?
Just to be clear, the user will see the scrambled password and the correct password and will have to find among the answer options the sequence of numbers that determines the order of the correct password based on the order of the scrambled password.
For example:
Shuffled order: CBAD (Order: C=1/B=2/A=3/D=4)
Correct order: ACDB
- As "A" appears in the third place of the shuffled order, it will represent the "A" of the correct answer in the first place.(3XXX)
- The "C" is in the 1st place of the shuffled order, the 1 will take the place of the "C" in the second place of the correct order (31XX)
- The "D" appears in the fourth place of the shuffled order and in the third position of the correct order. (314X)
- And finally, the "B", which appears in the second place of the shuffled order and in the fourth place of the correct order (3142)
Then the system would need to generate one correct answer (3142) and two wrong answers.
EDITED: I tested CAPX with the predefined combination, and several times the combination I defined did not appear among the 3 answer options. Could you say why this happens?