Not sure if this is by-design,
but i think this is really confusing that OR Condition is executed multiple times as long as the condition is true/fulfilled.
The Action part should be executed only once (when the whole condition is fulfilled/TRUE),
instead of running the action as many times as the condition is true (like right now)
Here is a simple example:
<img src="http://i43.tinypic.com/2m7ydk9.jpg" border="0">
capx:
http://dl.dropbox.com/u/39382262/OrSimple.capx
RESULT:
myNumber: 1 Result: 2, 3, 4, 5
myNumber: 2 Result: 3, 4, 5
myNumber: 3 Result: 4, 5
myNumber: 4 Result: 5
EXPECTED RESULT:
myNumber: 1 Result: 2
myNumber: 2 Result: 3
myNumber: 3 Result: 4
myNumber: 4 Result: 5
Turning the action into sub-event doesn't really work either:
<img src="http://i41.tinypic.com/2chmbth.jpg" border="0">
capx:
http://dl.dropbox.com/u/39382262/OrSubEvent.capx
The weird thing is, on this case when myNumber is 1, it only executed once:
RESULT:
myNumber: 1 Result: 2
myNumber: 2 Result: 3, 4, 5
myNumber: 3 Result: 4, 5
myNumber: 4 Result: 5
EXPECTED RESULT:
myNumber: 1 Result: 2
myNumber: 2 Result: 3
myNumber: 3 Result: 4
myNumber: 4 Result: 5