I can't see the image too.
If I understand right you have many conditions in a single event like this for example:
Mouse cursor is over Sprite
is animation "run" Playing
Sprite2 Y < 150
If that's the case, then the first time you use these conditions together, add an action that sets a global variable. Like MyConditions=1
Then you can use a single condition:
System - MyConditions=1 --> ...(trigger some actions)
At the end of the actions set the variable back to zero.