Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
for loop
#1
Hi,
is it possible to include 'for' loop in the macro? If it is - how to do it? Beacuse code which i found doesn't work at all..

for x:=0, x<5, 1 do
[here i do what i need to do]
end
#2
You could do it with pure variable logic.

X:=0
{TryAgain}
->Logic
VarAdd(X, 1)
X==5 [TryAgain]


Forum Jump:


Users browsing this thread: 1 Guest(s)