Code:
PRINT "Randomise, ToggleScope":PRINT Randomise ToggleScope FOR i = 1 TO 10 PRINT Rnd2 NEXT PRINT PRINT "ToggleScope, RepeatLastSequence":PRINT ToggleScope ' * Remove to just repeat RepeatLastSequence FOR i = 1 TO 10 PRINT Rnd2 NEXT PRINT:PRINT "**********":PRINT

Note by John Gleason: "The significant changes to your original code are: 1) toggleScope uses only one generator so it cannot un-toggle then repeat the last sequence anymore. To repeat it
must be in the same toggle state." from here post #3.
Revision:
Code:
PRINT "Randomise, ToggleScope":PRINT Randomise ToggleScope FOR i = 1 TO 10 PRINT Rnd2 NEXT PRINT WAITKEY$ PRINT "RepeatLastSequence":PRINT RepeatLastSequence FOR i = 1 TO 10 PRINT Rnd2 NEXT PRINT:PRINT "**********":PRINT
Leave a comment: