TsunamiZ Posted October 17, 2009 Report Share Posted October 17, 2009 Is it possible to make a make to enable / disable a whole category of macros at a time? Instead of each macro individually? Individually is rather slow when dealing with many macros. Quote Link to comment Share on other sites More sharing options...
rberq Posted October 17, 2009 Report Share Posted October 17, 2009 I don't think so, with ME3. You can write a macro with a bunch of disables or enables in it, and run that. Take a look at ME Pro. It has some added features, but I don't know if what you want is included. Quote Link to comment Share on other sites More sharing options...
terrypin Posted October 18, 2009 Report Share Posted October 18, 2009 I don't think so, with ME3. You can write a macro with a bunch of disables or enables in it, and run that. Take a look at ME Pro. It has some added features, but I don't know if what you want is included. Yes, in ME Pro you can use Enable/Disable Category. -- Terry, East Grinstead, UK Quote Link to comment Share on other sites More sharing options...
stan Posted October 19, 2009 Report Share Posted October 19, 2009 Macro Express 3 also has the Enable/Disable Category menu option. Select the category and press <Alt>cb. This activates the Category menu and then disables or enables the macros in that category. Quote Link to comment Share on other sites More sharing options...
TsunamiZ Posted November 1, 2009 Author Report Share Posted November 1, 2009 Macro Express 3 also has the Enable/Disable Category menu option. Select the category and press <Alt>cb. This activates the Category menu and then disables or enables the macros in that category. but can u make a macro do that? Quote Link to comment Share on other sites More sharing options...
TsunamiZ Posted July 12, 2010 Author Report Share Posted July 12, 2010 just tried MEPro and doesnt seem like there is a macro command to enable/disable a category. hope it can be added in the future... Quote Link to comment Share on other sites More sharing options...
acantor Posted July 13, 2010 Report Share Posted July 13, 2010 but can u make a macro do that? Yes. Set the "Scope" to the title of window -- "Macro Express - Macro Explorer" (or whatever it is... I don't have ME3 running now). Here is the script: Text Type <ALT>c Text Type b Assign it to the hotkey of your choice. (I use Alt + B, for what it's worth!) Quote Link to comment Share on other sites More sharing options...
TsunamiZ Posted July 13, 2010 Author Report Share Posted July 13, 2010 i mean a macro command like "macro enable" that sends the command directly to the category. so that i can have ME editor closed or be in other windows, etc. Quote Link to comment Share on other sites More sharing options...
acantor Posted July 13, 2010 Report Share Posted July 13, 2010 Here is a code snippet for a script I wrote in ME Pro. Variables are handled differently in ME 3, and I don't know whether ME 3 supports the "if macro xxxx enabled" command. This script enables or disables a macro nicknamed "Delete Line." I don't think it would be hard to modify the script to handle several macros. The purpose of the first and last lines is to keep the topmost window focused. You may or may not need these lines. Variable Set String %TopWindow% to topmost window title If Macro "Delete Line" is enabled Macro Disable: Delete Line Text Box Display: "Delete Line" Disabled Else Macro Enable: Delete Line Text Box Display: "Delete Line" Enabled End If Delay: 1000 milliseconds Window Activate: %TopWindow% Quote Link to comment Share on other sites More sharing options...
TsunamiZ Posted July 14, 2010 Author Report Share Posted July 14, 2010 the problem is running multiple macro enable/disable commands are slow. so i want to have a macro that can enable/disable a whole category with 1 command. Quote Link to comment Share on other sites More sharing options...
terrypin Posted July 14, 2010 Report Share Posted July 14, 2010 the problem is running multiple macro enable/disable commands are slow. so i want to have a macro that can enable/disable a whole category with 1 command. Did you try doing it by the simple method Alan suggested? Seems to me that your macro would just: 1. Activate Macro Express Explorer 2. Select the target category 3. Type the commands to Enable/Disable it. -- Terry, East Grinstead, UK Quote Link to comment Share on other sites More sharing options...
TsunamiZ Posted July 14, 2010 Author Report Share Posted July 14, 2010 the macro enable/disable command can enable/disable without having to access the interface. i'm requesting the software makers to make a similar but new command for doing the same for category. it needs to be able to work without accessing the interface. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.