Jump to content
Macro Express Forums

gproxy

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by gproxy

  1. Hello,

     

    I've been using the "Variable Modify Integer-Increment" in a repeat loop to have the N1 variable increment +1 on every repeat within the macro execution. My question is this. Is there a way to have an increment function WITHOUT the repeat loop... ie. make it so every time a macro -with no repeat loop-is executed, a variable (N1) within the macro would increment by 1?

     

    I want to create a macro where every time I run it, n1 increments by +1 and where this updated n1 value would be retained for the next time I execute the macro during the session.

     

    I hope this was clear. Thanks

  2. Thanks alot rberq!,

     

    Stumbled across the "modify integer into a text string" command while you were posting. The integer as a text string could then be used with the append text function which is key to make it all work.

     

    Amazing the commands buried in Macro Express... who was the guy/gal to forese the uses lol.

     

    So my macro reads something like this now:

     

    Set Integer N=90

     

    Repeat START

     

    -Variable Set String T2 "www.macroexpress.com/"

    -Variable Modify Integer N1= 10 + N1

    -Variable Modify Integer: Convert N1 to text string T1

    -Variable Modify String: Append T1 to T2

    -Variable Modify String: Save T2 to clipboard

     

    (Do misc functions with the construct)

     

    Repeat END

  3. Hello,

     

     

    I have a feeling that Macro Express can do this but am at a loss trying to find the appropriate commands.

     

    Let's say I have a starting N#= 100.

     

    I need to add that to the end of a url, paste to a browser, and then run some operations.

     

    Then repeat with the same url with N# +10.

     

    The url constructs would look like:

     

    www.macroexpress.com/100

    www.macroexpress.com/110

    www.macroexpress.com/120

    www.macroexpress.com/130

    www.macroexpress.com/140

    etc.

     

     

    Thanks

×
×
  • Create New...