View Single Post
  #3  
Old 06-02-2011, 06:59 PM
joe12 joe12 is online now
Registered User
 
Join Date: 05-26-2011
Posts: 8
So I changed out the Loop Action steps to just loop over a Run Script action where I use the vbld_AddDelimValue or vbld_PushDelimValue call to capture all the values I will need to loop over.

Then I use a Group step to do the looping, by using the "Repeat step..." checkbox and place my temporary macro as the condition that must be "is defined". Inside the Group step I use another Run Script action and use vbld_PopDelimValue to get one of the items to be looped over.

Doing it this way, the Loop Action step is never nested inside another Loop Action, but it does get nested inside a "repeating mode" Group step.

Note that these "repeating mode" Group steps are now being used as loops, and are nested.


I tried that and it does seem to work, is that the best way to do this?

Also, I think my implementation might not be as clean as it could be. Is the nesting of Group steps which are set to "Repeat..." with the use of the vbld_PushDelimValue and vbld_PopDelimValue calls shown in any of the example projects?

Last edited by joe12; 06-02-2011 at 07:16 PM.
Reply With Quote