Calling a procedure multiple times


#1

Hi,

I was wondering if I can call a procedure a specific number of times in MEL? Depending on what the user input is…


#2

Yes you can. Use something like a “for loop”.

for($i=0; $i < $numTimes ; $i++) {
    myProc();
}

David


#3

Omg. So obvious. But thank you very much for your help