Your post isn't very clear. What do you mean "ran out of space?" I'm assuming that you are trying to use more than 64 actions for one trigger. (I'm surprised that there's not a tutorial for this).
Basically what you want to do is use a switch to "continue" the flow of actions into a second trigger and preserve them both, and clear the switch at the end of the second trigger. You can also do this to link conditions if you want more than 16 conditions for one trigger:
| Trigger |
| Description: |
| Linking Actions, Trigger 1 |
|
| Conditions: |
¤ Some conditions
|
| ¤ Switch 1 is cleared |
| Actions: |
¤ 63 Actions (might include preserve trigger)
|
| ¤ Set Switch 1 |
| Trigger |
| Description: |
| Linking Actions, Trigger 2 |
|
| Conditions: |
| ¤ Switch 1 is set |
| Actions: |
¤ Some more actions (if the first one was preserved, this one should be too)
|
| ¤ Clear switch 1 |
You can use as many triggers as you want linked in this way, and you'll get 62 or 63 actions for each of them. Now for conditions:
| Trigger |
| Description: |
| Linking conditions, Trigger 1 |
|
| Conditions: |
¤ 15 Conditions
|
| ¤ Switch 1 is clear |
| Actions: |
| ¤ Set switch 1 |
| ¤ Optional: Preserve trigger |
| Trigger |
| Description: |
| Linking conditions, Trigger 2 |
|
| Conditions: |
¤ Some more conditions
|
| ¤ Switch 1 is set |
| Actions: |
¤ Some actions
|
| ¤ Clear switch 1 |
| ¤ If the first trigger was preserved, this one should be too |