Copy and paste doesn't work

Every time I try to copy and paste a certain procedure, it says "loading" at the top of the screen but nothing happens.

How big is the procedure?

Are you able do to a Download PNG Image on that procedure?

Try not to copy procedures, since you run the risk of creating a DRY issue.

1 Like

If necessary to make a copy in the code, use 'duplicate' rather than 'copy'.

The procedure is roughly 150 blocks

  • Reduce your block count:
    • Use parametrized procedures for common code
    • Use Media text files instead of big clumps of text blocks
    • Use generic blocks instead of repeating component event blocks
    • Encode repeating decision patterns into lookup tables loaded from Media csv text files (does your blocks image look like a box of combs?)
    • You don't need a component for every data instance. Reuse those components.
    • If you can't fit data into a ListView or List Picker, show a small subset of the data in an Arrangement and slide it across the larger list of data.

...