Yes, I was intending multi-frame sequences. There are several issues.
First, like any multi-frame structure, they hide your code. (At least with a case structure you can still see at once all the code that will execute this time.)
Second, once you get into one you can't bail out early. You're committed to going through everything.
Third, the way sequence locals are done means that there tends to be a lot of wires running back and forth across the screen.
Fourth, there's no logical reason for having a multiframe sequence in a dataflow programming environment so having them supports people in maintaining some very bad habits like not checking for errors, or thinking one-dimensionally.
Mike...