Loop in Loop ?

Loop in Loop ?

2

    Sep 02, 2005#1

    Hello i'm very rooky in Ultra Edit Macro and i don't find the way to make a Loop in a Loop.

    Like in my example i want to make a break before a caractere chain :

    Loop
    IfEof
    ExitLoop
    Find "text"
    Loop 4
    Key LEFT ARROW
    EndLoop
    InsertPageBreak
    Key DOWN ARROW
    EndLoop

    Thanks for your help

    6,682583
    Grand MasterGrand Master
    6,682583

      Sep 05, 2005#2

      Nested loops are not possible. Place the macro code of the inner loop in an additional macro in the same macro file and run this submacro with the PlayMacro command in the main macro.
      Best regards from an UC/UE/UES for Windows user from Austria

      2

        Sep 05, 2005#3

        Thanks ! I'll try that.