`SKIP` block to skip ___ blocks

This was posted in Discord and I see it on the trello but the last update was July 22 to be “planned next release”

A current workaround I’ve been using is a loop with 1 iteration and a break block to act as the skip and skip the rest of what I want to do which is okay but not the best for certain things because the best workaround to the loss of individual outputs is using a local var and split string list unless I want a local var for each var in the loop

This has taken a while because it requires some runtime changes. I’ve moved it up and will implement it sooner than later as it’s no longer blocked by anything.

1 Like

And also a “Skip Point” block for flows like this:

  • Skip Point - Portion of Code at the Top
  • Loop 3x
    • If Iteration = 1
      • Skip to “Super Cool Portion of Code”
    • Else
      • Skip to “Portion of Code at the Top”
  • Skip Point - Super Cool Portion of Code
  • Realtime Log - I ESCAPED THE LOOOOOP!!!
  • end flow

It would execute in this order:

  1. If 0 = 2: no
  2. Else: Okay, skipping back to Portion of Code at the Top
  3. If 1 = 1: Yes, I’m gonna skip down now.
  4. Log I ESCAPED THE LOOOOOP!!!
  5. end flow