Hi,
I was wondering if I can call a procedure a specific number of times in MEL? Depending on what the user input is…
Hi,
I was wondering if I can call a procedure a specific number of times in MEL? Depending on what the user input is…
Yes you can. Use something like a “for loop”.
for($i=0; $i < $numTimes ; $i++) {
myProc();
}
David