Correct me if I'm wrong but I'm guessing your events looks something like,
If enemy is moving -> play walk (continuous) animation
If enemy shooting -> play shooting animation
So if this is in the right ballpark, you could get around it by inserting an extra condition in the first line, something like so:
If enemy is moving + shooting animation not playing -> play walk animation
This way your continuous animation won't interrupt the shooting animation.