Jump to content
Macro Express Forums

Repeat a macro 20 times


koden

Recommended Posts

I have created a simple macro that copies from excell and paste into webside.

 

I would like to have the macro to repeat a amount of times.

 

is it possible in some way to start the macro with a prompt where i type tat it f.ex. should run 20 times..

 

So when finished then start from beginning again.

And do that 20 times or more.

 

Link to comment
Share on other sites

Use two macros.  The first macro (example below) will prompt for the number of times to run the second macro, then run it.

 

//  
Variable Set Integer %count%: Prompt    ["set integer" option to prompt for number of repetitions]
Repeat Start (Repeat %count% times)    [run the second macro multiple times]
  Macro Run: macro_2
End Repeat
//  

 

Edit: I see you posted this in the Macro Express 3 forum.  You will need to use one of the pre-defined integer variable (N1, N2, N3....) instead of %count% in my example. 

 

Link to comment
Share on other sites

5 hours ago, koden said:

 

is there a quick short key to stop a running macro

In Options | Preferences you can set a hot key that aborts running macros.

 

You could prompt for a text variable rather than an integer.  Then use Variable Modify String to extract and examine individual digits.  After verifying, there is an option of Variable Modify String to convert string to integer. 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...