Mini Mouse Macro Changelog

What's new in Mini Mouse Macro 8.3.3.0

Mar 19, 2022
  • New Condition:
  • New Condition 'Last Condition'
  • This condition is used to evaluate if the last processed condition evaluated to true (successful) or false (unsuccessful) It's useful for macro flow control, as an alternative to ELSE conditions, or for macro debugging More info at https://wwwturnssoftcom/conditions#lastcondition
  • New Debug action added 'RECORD NUMBERPAD':
  • This debug action is useful for record debugging and will enable/disable interpretive numpad recording
  • See the changes to default numpad recording under improvements below
  • For more on dubug actions see https://wwwturnssoftcom/conditionshtml#debug
  • Improvements:
  • Classic %STRING%, %INTEGER%, %BOOLEAN%, %DECIMAL% variables extended to 100 value entries
  • The Mouse Movement action now supports multiple screen displays
  • Some error handling errors have been cleaned up
  • Loading a macro via cmd line args whilst also having 'Load Last Saved Macro' enabled will now only load the cmd line argument macro file
  • Numberpad recording now by default will record the true numpad press and not MMMs interpretive numpad catching
  • This replaces a recording of '1' with 'numpad1' and so on up to numpad9 When recording with numlock on the numpad functions (end, pgup, etc) are recorded as usual
  • To switch back to the old style MMM interpretive numpad recording run the 'RECORD NUMBERPAD' debug option prior to recording
  • Fixes:
  • Fix for custom named variable math chaining of integer and decimal values
  • Fixed an issue whereby the Mouse Movement action failed when called from an IF condition (BZ26 wwwturnssoftcom/bugtrackhtml#bugs)
  • Fixed an issue whereby multiple nested FOR I looping carried the initial loop counter for the first iteration
  • Fixed an issue whereby entry edits would trim 'Key Down/Up' trailing text from a line

New in Mini Mouse Macro 8.3.2.1 (Aug 15, 2021)

  • Minor fix to patch keypress ENTER failing to output a return.

New in Mini Mouse Macro 8.3.1.0 (Jul 21, 2021)

  • Fix:
  • Mouse and macro playback delay
  • A bug has been patched that caused slow mouse and macro playback.
  • BZ20 (https://www.turnssoft.com/bugtrack.html#bugs)

New in Mini Mouse Macro 8.3.0.0 (Jul 17, 2021)

  • New Features:
  • New Action - PIXEL CAPTURE:
  • Capture a pixel RBG value at a given mouse position and then save this variable for use later on.
  • PIXEL CAPTURE can be used to compliment the PIXEL COLOR condition.
  • New Action - MOUSE TO IMAGE:
  • Detect an image from a file on the screen and optionally move the mouse to the location.
  • MOUSE TO IMAGE optionally can store the result of the capture location to variables for later use.
  • New IF Condition - DETECT IMAGE:
  • Detect an image from a file on the screen and optionally move the mouse to the location.
  • DETECT IMAGE operates the same as MOUSE TO IMAGE and excepts the same syntax.
  • DETECT IMAGE accepts the 'IMAGE FOUND' and 'IMAGE NOT FOUND' conditional operators.
  • New Action - MOUSE MOVEMENT:
  • Playback a series of mouse movements.
  • New Action - MOUSE CLICK:
  • Perform mouse clicks at a set mouse position.
  • New Action - Define Pixel Range Variable:
  • A pixel range variable holds a captured pixel range bitmap.
  • Pixel range variables can be used as input to PIXEL RANGE conditions.
  • New Action - Pixel Range Save:
  • Pixel range save will save the bitmap from a declared Pixel Range variable to a file.
  • New IF Condition - Pixel Variable:
  • The Pixel Variable condition evaluates the difference between two defined Pixel Range variables.
  • This is useful to detect pixel range changes on screen.
  • New DEBUG Action - Step Playback:
  • This debug feature can be toggled on and off during playback and will step through the macro one line at a time.
  • After each line is executed the macro will 'pause'. This operates as though the macro pause button is pressed every line.
  • Improvements:
  • Variables for X, Y, and Time values can be populated in the 'Edit Entry' dialog when editing an entry.
  • Minor improvements to Pixel Range dialog GUI.
  • MiniMouseMacro.exe is now code signed.
  • "Enable Variable Saves" unlocked for the standard version. This setting is enabled by default on the first system run.
  • New setting added under 'Options - Program Options - Stop Playback on Error'. When enabled if an error occurs during playback the macro will stop immediately.
  • New setting added under 'Options - Program Options - Load Last Saved Macro'. When enabled the last saved macro will load into the macro list at program startup.
  • PIXEL COLOR condition now can evaluate pixel RGB variations with '<', and '>'.

New in Mini Mouse Macro 8.1.0.0 (Feb 8, 2021)

  • New Features:
  • Custom Variable Names
  • Variables of every type can have custom names. For example:
  • 1 | RUN ACTION | DEFINE INTEGER VARIABLE | %TOTAL%::100
  • 2 | RUN ACTION | DEFINE STRING VARIABLE | %NAME%::STEVE
  • New DEBUG actions:
  • Show Custom Variables. Show custom variables outputs all custom vars defined to the MMM internal event log.
  • 1 | RUN ACTION | DEBUG | SHOW CUSTOM VARIABLES
  • Clear Custom Variables. Clear custom variables removes the values from all custom variables.
  • 1 | RUN ACTION | DEBUG | CLEAR CUSTOM VARIABLES
  • Clear All Arrays. Clears all internal array variables.
  • Internal arrays include, custom vars, array vars (coming soon), and MMM internal event log events.
  • 1 | RUN ACTION | DEBUG | CLEAR ALL ARRAYS
  • Improvements:
  • Code indentation is used to visual indent macro lines into easier to read blocks.
  • At this version the code indentation is only visual and doesn't how macro lines are processed.
  • Right click a macro line(s) - Edit Entry - Indent/Unindent (Ctrl+M/Ctrl+Shift+M)
  • The TIME_MACRO internal variable is now expanded to include granular total output:
  • %TIME_MACRO_H% - The total running time in hours
  • %TIME_MACRO_M% - The total running time in minutes
  • %TIME_MACRO_S% - The total running time in seconds
  • %TIME_MACRO_MS% - The total running time in milliseconds
  • Save to INI - 'Are you sure?' option added.
  • Saving MMM settings to file is only suitable for those wishing to carry MMM settings between computers.
  • When a settings INI file exists, it takes precedence over running settings.
  • In the past, the precedence shift to the INI file has caused confusion for those unware of this.
  • So, 'Are you sure?' has been added.
  • Fixes:
  • Fix for integer math chaining failing to evaluate more than one variable - BZ_16 (https://www.turnssoft.com/bugtrack.html#bugs)
  • Fix for EXIT action failing to cleanly close - BZ_17

New in Mini Mouse Macro 7.4.0.0 (Mar 9, 2020)

  • New Features:
  • Chaining of math operations whilst declaring INTEGER variables
  • 1 | RUN ACTION | DEFINE INTEGER VARIABLE | %INTEGER4%::+%INTEGER1%+%INTEGER2%
  • 1 | RUN ACTION | DEFINE INTEGER VARIABLE | %INTEGER%::0::+%STRING%::+%RANDOM_1-50%::*5
  • RUN ACTION DEBUG addition of LOGGER
  • DEBUG LOGGER will send information directly to the MMM event log
  • 1 | RUN ACTION | DEBUG | logger::INFO::verbose::A verbose informational event
  • 2 | RUN ACTION | DEBUG | logger::INFO::An informational event
  • 3 | RUN ACTION | DEBUG | logger::WARNING::verbose::A verbose warning event
  • 4 | RUN ACTION | DEBUG | logger::ERROR::A error event
  • RUN ACTION DEBUG addition of BACKGROUND COLOR and FOREGROUND COLOR
  • DEBUG BACKGROUND COLOR changes the back color of the macro window for the session
  • 1 | RUN ACTION | DEBUG | BACKGROUND COLOR::Black
  • 2 | RUN ACTION | WAIT SECONDS | 1
  • 3 | RUN ACTION | DEBUG | FOREGROUND COLOR::LightSeaGreen
  • New condition object 'IDLE'
  • The IDLE condition evaluates the idle state of the host
  • 1 | IF | IDLE | 10::BREAK::NOKEYS | IS TRUE | MESSAGE PROMPT | IDLE detected (10 sec) (keys ignored)::idle::0
  • 2 | IF | IDLE | 20::NOMOUSE | IS TRUE | MESSAGE PROMPT | IDLE Detected (20 sec) (mouse ignored)::idle::0
  • 3 | IF | IDLE | %INTEGER% | IS FALSE | MESSAGE PROMPT | IDLE NOT Detected::idle::0
  • New ACTION 'RUN MACRO INLINE'
  • The RUN MACRO INLINE action runs a saved macro file inline before progressing the macro
  • 1 | RUN ACTION | RUN MACRO INLINE | D:Macrocalculate.mmmacro
  • New internal variable %LASTLOG% and %LASTLOGEVENT%
  • LASTLOG captures the last log entry sent to the internal MMM event log
  • LASTLOGEVENT capture the last log event type sent to the internal MMM event log
  • Improvements:
  • The operator value for Integer, string, and decimal variables can be be extended to 99 within the 'Add Condition' dialog
  • Notification via the MMM Event Log when GOTO fails to find a line number/label
  • Fast manual variable assignment. The following syntax is now valid -
  • 1 | RUN ACTION | INTEGER::12345678
  • 2 | RUN ACTION | STRING1::CATCH%RANDOM%
  • 3 | RUN ACTION | DECIMAL2::3.3
  • 4 | RUN ACTION | BOOLEAN3::TRUE
  • Fixes:
  • Fixed an issue where the BOOLEAN object would not display within the object menu of the 'Add Condition' page

New in Mini Mouse Macro 7.3.0.0 (Jan 16, 2020)

  • New Features:
  • New ACTION Keypress:
  • 1 | RUN ACTION | KEYPRESS | The time is %time% and the date is %date%
  • https://www.turnssoft.com/conditions.html#keypress for more info and examples
  • New ACTION Keypress From File:
  • 1 | RUN ACTION | KEYPRESS FROM FILE | D:MacroTXOutput.txt
  • https://www.turnssoft.com/conditions.html#keypressfromfile for more info and examples
  • New ACTION Load Macro from URL:
  • 1 | RUN ACTION | LOAD MACRO FROM URL | https://minimousemacro.com/macro/test_macro.mmmacro
  • 1 | RUN ACTION | LOAD MACRO FROM URL | https://pastebin.com/raw/Qii5ZbVa
  • https://www.turnssoft.com/conditions.html#loadmacrofromurl for more info and examples
  • New ACTION Add Macro From URL:
  • 1 | RUN ACTION | ADD MACRO FROM URL | https://minimousemacro.com/macro/test_macro.mmmacro
  • https://www.turnssoft.com/conditions.html#addmacrofromurl for more info and examples
  • New ACTION Debug:
  • DEBUG is a simple action to enable, disable, or set macro settings during a running macro.
  • https://www.turnssoft.com/conditions.html#debug for more info and examples
  • New Feature 'loop line':
  • 'Loop line' provides the ability to loop individual macro lines or blocks of macro code.
  • - Select one or multiple macro lines 'Right click - Edit Entry/Mass Change - Loop Line - Add/Remove'
  • New Feature 'Paint Path':
  • 'Paint Path' provides the ability to draw out the X and Y location temporarily without running the macro line.
  • Select one or multiple macro lines 'Right click - Goto Selected - Paint Path'
  • See https://minimousemacro.com/pic/forum/minimousemacro_debugpaintpath.gif for a demo.
  • Improvements:
  • The Edit dialog for 'time' values can now accept variables
  • Are you sure? Clear List confirmation
  • Show Version Setting (Options - Display Customization - Show Version Number)
  • Keyboard shortcut (Ctrl+Right Arrow) has been added to add/remove comments on macro lines
  • Added internal variables for the local system environment ('Options - Variables' for more information)
  • Added internal variable %TIME_MACRO% that captures the current running macro time
  • Minor improvements to the GUI
  • Fixes:
  • Fixed a bug that prevents sorting saved Quick Launch macro's correctly
  • Fixed a bug whereby setting 'loop' for infinite looping for quick launch marcos would cause quick launch to fail
  • Fixed a bug within 'Settings - Variables - Variable Refresh' that would crash Mini Mouse Macro after extended periods
  • Fixed a bug in the action 'Add Macro from file' where the action would fail to load the file into the macro list
  • Fixed some incorrect spelling on the settings page

New in Mini Mouse Macro 7.2.0.0 (Jul 28, 2019)

  • New Features:
  • New internal variables:
  • %date_y% %date_yyyy% %date_year% (19 2019 2019)
  • %date_weekday% %date_weekdayname% (2 Tuesday)
  • %date_d% %date_dd% %date_ddd% %date_dddd% (4 04 Tue Tuesday)
  • %date_m% %date_mm% %date_mmm% %date_mmmm% %date_month% (4 04 Apr April)
  • New ACTION Text to Speech:
  • 1 | RUN ACTION | TEXT TO SPEECH | Hello World.::MALE::0::Sync
  • https://www.turnssoft.com/conditions.html#texttospeech for more info and examples
  • New ACTION Play System Sound
  • 1 | RUN ACTION | PLAY SYSTEM SOUND | Beep::SYNC
  • 1 | RUN ACTION | PLAY SYSTEM SOUND | https://www.pacdv.com/sounds/voices/hello-1.wav::ASYNC
  • https://www.turnssoft.com/conditions.html#playsystemsound for more info and examples
  • New Variable %DECIMAL% through to %DECIMAL99%
  • Decimal values can now be assigned to DECIMAL variables for use in math functions
  • The Action DEFINE DECIMAL VARIABLE has been added
  • The condition IF DECIMAL VARIABLE has been added
  • https://www.turnssoft.com/conditions.html#decimal_variable for more info and examples
  • https://www.turnssoft.com/conditions.html#define_decimal_variable for more info and examples
  • Improvements:
  • MOUSE POSITION NEAR now supports additional parameters to define the near value for the X and Y coordinates.
  • MOUSE POSITION NEAR now no longer evaluates true if the X or Y coordinate is near. Now X AND Y coordinates must both be within the near ratio.
  • Improvement to how the RANDOM variables handle random numbers.
  • New shortcut (Ctrl+-) added for 'Skip Mouse X & Y'
  • The RUN PROGRAM Action now can accept program arguments:
  • 1 | RUN ACTION | RUN PROGRAM | D:MacroMiniMouseMacro.exe::"d:Macrolaunch.mmmacro" /e
  • https://www.turnssoft.com/conditions.html#runprogram for info and examples
  • Fixes:
  • Random numbers within RANDOM variables now do not repeat the same value within loops
  • Integer math failing to correctly detect math operators has now been fixed
  • Importing a saved Macro Queue file now does not trim the last row imported

New in Mini Mouse Macro 7.1.0.0 (Jan 8, 2019)

  • New Action DRAW:
  • DRAW creates temporary graphics on the screen
  • DRAW can create TEXT, PICTURES, CIRCLES, RECTANGLES, and LINES as graphics.
  • 1 | RUN ACTION | DRAW | TEXT::AT LOCATION [100 200]::COLOR [Black 1]::STRING [The time is %time%]::FONT [Arial, 20, Regular]::TIME [2 50]::WAIT YES
  • Checkout https://www.turnssoft.com/conditions.html#draw for examples
  • New action SET TITLE:
  • SET TITLE action defines macro window title
  • 1 | RUN ACTION | SET TITLE | %date% %time% Macro Start
  • Checkout https://www.turnssoft.com/conditions.html#settitle for examples
  • New action DEFINE BOOLEAN VARIABLE
  • Boolean variables can now be defined
  • 1 | RUN ACTION | DEFINE BOOLEAN VARIABLE | %BOOLEAN%::TRUE
  • Checkout https://www.turnssoft.com/conditions.html#booleans for examples
  • New condition IF BOOLEAN VARIABLE TRUE/FALSE
  • Boolean variables can now be defined
  • 1 | IF | BOOLEAN VARIABLE | %BOOLEAN2% | IS FALSE | GOTO MACRO LINE | 10
  • Checkout https://www.turnssoft.com/conditions.html#booleanvariable for examples
  • New graphical 'Load Tree' option from the File menu
  • Load Tree allows a new graphical option to view, load, and run .mmmacro files
  • Improvements:
  • New variables to cover time and date values:
  • Year value %DATE_Y%
  • Month value %DATE_M%
  • Day value %DATE_D%
  • Hour Value %TIME_H%
  • Minute Value %TIME_M%
  • Second Value %TIME_S%
  • Millisecond Value %TIME_MS%
  • The GOTO MACRO LINE action can now accept remark titles and the UP/DOWN key word
  • Remarks can be used to define GOTO headers
  • 9 | RUN ACTION | GOTO MACRO LINE | Start
  • Up and Down key words can be used to navigate up and down the macro list
  • 9 | RUN ACTION | GOTO MACRO LINE | UP 3
  • Checkout https://www.turnssoft.com/conditions.html#gotomacroline for examples
  • String and Integer variables have been extended to 100
  • %STRING5% through %STRING99% are now valid internally for assignment
  • %INTEGER5% through %INTEGER99% are now valid internally for assignment
  • https://www.turnssoft.com/conditions.html#string_variable
  • https://www.turnssoft.com/conditions.html#integer_variable
  • Minor additions and function improvements to Terminal BETA
  • Domain used to pull update information changed from turnssoft.com to https://minimousemacro.com
  • MMM_Settings.ini now can save and load saved font settings
  • MMM_Settings.ini now can save and load screen size saved settings
  • Error output for DEFINE STRING/INTEGER/BOOLEAN when manual syntax errors has been made clearer
  • Fixes:
  • Bug whereby 'Loop' checkbox and GOTO would not work when enabled together
  • Limitation whereby when adding the condition via the GUI for RUN ACTION WAIT MILLISECONDS/SECONDS/MINUTES/HOURS would only require a numeric value
  • Minor issue whereby 'Macro Edit' Ctrl+Alt+H would clear the last charactor of the find text
  • Minor issue whereby Message Box would try to parse %RETURN% and math operators when paired in the message
  • Minor issue whereby a manual update check would crash if an update check is currently running

New in Mini Mouse Macro 7.0.0.0 (Oct 31, 2018)

  • New Features:
  • Key Down / Key Release:
  • Setting to enable the capture of Key Down and Key Release for all keys to the recording engine
  • This captures a keypress 'hold down' and 'release'
  • Options - Record Options - Key Capture - Enable key down capture
  • Event log option to output directly to file:
  • Options - Event Log - Output Log - Output to file
  • Event log raw log viewer:
  • A tool to view the current MMM event log output file
  • Options - Event Log - Output Log - Open log file
  • New Condition - Pixel Range:
  • PIXEL RANGE evaluates a condition based on changes in a range of pixels
  • 1 | IF | PIXEL RANGE | At Location [X:2768 Y:602]::Size [W:68 H:62] |
  • CHANGES::1::0::0 | GOTO MACRO LINE | 10:
  • https://www.turnssoft.com/conditions.html#pixelrange for usage examples
  • Improvements:
  • Added capture of modifier keys to all mouse button presses:
  • 1 | 529 | 271 | 1837 | Keypress Ctrl+ | Left Click Down
  • 2 | 529 | 271 | 84 | Keypress Ctrl+ | Left Click Release
  • 3 | 529 | 271 | 1837 | Keypress Alt+ | Left Click Down
  • 4 | 529 | 271 | 84 | Keypress Alt+ | Left Click Release
  • The 'Windows key' now accepts multiple keypress
  • Quick Launch now can use the 'None' modifier
  • Macro Queue loop limit of 100 cycles removed
  • Minor additions and function improvements to Terminal BETA
  • Fixes:
  • Patch applied for a program crash caused by long duration internal macro GOTO loops
  • Fixed the failure to release the key event (key down) for selected special keys (selected multimedia and browsing keys) after playback
  • 'x' value on Mouse X and Y coordinates no longer fails due to lower case value

New in Mini Mouse Macro 6.8.0.0 (Oct 11, 2018)

  • New Features:
  • 1. Global text and font display customization
  • Set the color and style of text from 'Program Settings - Display Customization'
  • 2. New Action - Input from File
  • Define variable data from a file
  • 4. New Add/Remove Comments feature
  • Available under the 'Edit Entry - Comments' and 'Mass Change - Comments' menu
  • 5. New Condition AND
  • AND adds further actions and conditions for evaluation to existing macro lines
  • AND is available under the 'Edit Entry - Action - Add AND Action' menu
  • 6. Terminal (BETA)
  • An interactive terminal to control local and remote MMM instances
  • Improvements:
  • 1. Macro line syntax improvements for RUN ACTION and FOR conditions
  • - RUN ACTION and FOR NEXT no longer require redundant delimiter values
  • - For Example:
  • Previous Syntax:
  • 1 | RUN ACTION | | | | MESSAGE PROMPT | Previous Syntax::OLD::0
  • New Syntax:
  • 1 | RUN ACTION | MESSAGE PROMPT | New Syntax::NEW::0
  • - Previous syntax is still compatible
  • 2. The DEFINE INTEGER VARIABLE action now allows for all internal variable values
  • - 1 | RUN ACTION | DEFINE INTEGER VARIABLE | %INTEGER%::%MOUSE_X%
  • 3. The DEFINE STRING VARIABLE action now allows for all internal variable values
  • - 1 | RUN ACTION | DEFINE STRING VARIABLE | %STRING%::%CLIPBOARD%
  • 4. Added a timeout value to the MESSAGE BOX action
  • - 1 | RUN ACTION | MESSAGE PROMPT | Please wait 5 seconds::Wait Test::5
  • - The message box will timeout automatically after 5 seconds
  • - https://www.turnssoft.com/conditions.html#messageprompt for more examples
  • 6. Macro Edit page (Settings - Macro) added functionality
  • - Find, replace, relist, plus others
  • 7. The Pixel Color object can now react to the number of changes to a pixel
  • - 1 | IF | PIXEL COLOR | At Location [X:194 Y:461] | CHANGES::2::10::100 | MESSAGE PROMPT | 2 changes within 10 seconds with a 100 ms delay::Pixel Changes::0
  • 8. The OUTPUT TO FILE action now has the option to append a new line with the output
  • - https://www.turnssoft.com/conditions.html#outputtofile for examples
  • 9. Minor improvements to the GUI and MMM internals
  • Fixes:
  • 1. Fixed an issue where starting a macro with 'Run Entry' or 'Run Selected' failed to play
  • 2. Fixed macro playback failing to start after a manual 'Macro Stop' with some condition based macro's
  • - Required ensuring that internal macro condition threads were terminated correctly
  • 3. Applied cleaner handling for inner exception generated on for Remark total time/Edit Drag and Drop/Edit Close events
  • 4. Fixed an issue where record option 'Disable Drag and Drop' produced bad click events

New in Mini Mouse Macro 6.7.0.0 (Aug 13, 2018)

  • New features:
  • Import/Export Macro Queue:
  • Can now save the Macro queue for importing later.
  • New Condition FOR:
  • FOR loops are now available within macros.
  • https://www.turnssoft.com/conditions.html#for for the types and examples of FOR loops.
  • New Action - NEXT FOR skips the current FOR loop iteration (www.turnssoft.com/conditions.html#nextfor)
  • New Action - EXIT FOR breaks and exits the current FOR loop (www.turnssoft.com/conditions.html#exitfor)
  • New Action - Output to File:
  • The OUTPUT TO FILE action helps writing out to a file during a running macro (www.turnssoft.com/conditions.html#outputtofile)
  • Playback speed Hotkeys:
  • New hotkeys have been added to slow and speed up the macro during playback.
  • Check out Options - Hotkeys to set the 'Playback Faster' and 'Playback Slower' hotkeys.
  • Recent Macro File Menu:
  • A new menu to access recently saved and played macros is available under the main menu.
  • New internal variables %MOUSE_X% and %MOUSE_Y% and %FILE% and %I%:
  • %MOUSE_X% and %MOUSE_Y% hold the current value of mouse X and Y respectfully.
  • With the addition of FOR loop conditions comes a raft of new (...about a dozen) internal variables that hold values within the FOR loop iteration.
  • Check out the new internal variables here www.turnssoft.com/conditions.html#string_variable
  • Option - Auto Relist on Play:
  • A new option exist within settings 'Auto Relist on Play'.As you can guess, this automatically relists the macro at playback.
  • Addition of Mouse Wheel Scroll UP/DOWN playback event:
  • Mouse wheel actions can now be played back.
  • These actions need to be added manually through Edit Entry - Action - Mouse Wheel Scroll
  • Improvements:
  • The Hotkey [None] option for a modifier key now equals no modifier key required:
  • The [None] modifier prior to version 6.7 disabled the hotkey.Now it ignores the requirement for a modifier
  • Improved condition Event Log output
  • Incorrect macro line entries (mouse and time) are now defaulted to X and 0 respectfully:
  • Manually errors made when editing mouse and time are automatically changed at run time to X and 0
  • Minimize to system tray file menu option now saves the selection
  • Update to EULA.Clearer explanations of the license agreement for business purchases
  • Can now define internal variables within DEFINE STRING/INTEGER action.:
  • Internal variables can now be changed at run time.Keep in mind that internal variables change frequently.
  • Can now use internal variables as operators:
  • Greater functionality when adding manual macro lines that contain variables
  • Select Window and process by name/id - now warning on failure not error
  • RUN PROGRAM action - now via the Add Condition file dialog now has no filter
  • Fixes:
  • Macro Queue Delay - Fixed issue whereby loaded macro would wait for the pre-set delay after the macro had been stopped.
  • Fixed when manual macro entry would fails with the addition of condition statements.
  • Issues whereby the Operator IS/IS NOT would not evaluate on certain Object types (File Size/File MD5)
  • GUI issue with Edit/Add entry window text overlap
  • Issue where manual edit entry for whole variable was not allowed
  • Recover from tray hotkey native hotkey (ctrl+alt M) not responding as expected.Now changed to Ctrl+Alt+UP ARROW
  • Removed case sensitivity requirements during playback from mouse based events
  • Fixed free version update dialog link clicks.Links can be clicked to go to the Turnssoft page.

New in Mini Mouse Macro 6.6.0.0 (Aug 7, 2017)

  • New tool - The Event Log:
  • The Event Log provides live event logging of macro functions.
  • This is useful during macro playback for condition evaluation.
  • To enable the Event Log go to Options - Event Log
  • New Hotkey - Master Kill:
  • The Master Kill hotkey when triggered kills ALL running MiniMouseMacro processes.
  • If running multiple instances of MiniMouseMacro.exe, this kills all.
  • To enable this hotkey go to Options - Hotkeys
  • Improvements:
  • Variables are now excepted for all macro values:
  • This can significantly improve macro control during evaluation.
  • For example the following short macro is now valid:
  • This simple macro moves the mouse X and Y pos incrementally 100 times.
  • 1 | RUN ACTION | | | | %STRING% | %INTEGER1%::0
  • 2 | %INTEGER1% | %INTEGER1% | %INTEGER2% | %STRING1%
  • %STRING2%
  • %STRING3%
  • The variables have the following values defined under variable settings in options:
  • %STRING%: DEFINE INTEGER VARIABLE
  • %STRING1%: Mouse Movement
  • %STRING2%: 3 | RUN ACTION | | | | DEFINE INTEGER VARIABLE | %INTEGER1%::+1
  • %STRING3%: 4 | IF | INTEGER VARIABLE | %INTEGER1% | < | 100 | GOTO MACRO LINE | 3 | ELSE | 4 | RUN ACTION | | | | MESSAGE PROMPT | Mouse Moved 100 times::END
  • %INTEGER1%: 0
  • %INTEGER2%: 50
  • Fixes:
  • Multi-Key capture is not on as a default setting. This was causing confusion. It is now on as a default setting.
  • Issue whereby GOTO would not go to line 1 when declared.
  • Issue whereby manual time edit values would default to last known.

New in Mini Mouse Macro 6.5.1.0 (Apr 18, 2017)

  • NEW FEATURES:
  • New Object - WINDOW TITLE:
  • The WINDOW TITLE object evaluates a condition based on the presence of a window title name.
  • The condition is useful to check if a program window is open during run time.
  • IF | WINDOW TITLE | index.txt - Notepad | EXIST | SELECT WINDOW BY NAME | index.txt - Notepad | ELSE | 1 | RUN ACTION | | | | RUN PROGRAM | D:Macroindex.txt
  • http://www.turnssoft.com/conditions.html#windowtitle
  • New constant string variable %RETURN%:
  • %RETURN% variable holds the line number value of the last completed macro line.
  • This variable is useful when used with GOTO to control macro flow.
  • RUN ACTION | | | | GOTO MACRO LINE | %RETURN%-5
  • RUN ACTION | | | | DEFINE INTEGER VARIABLE | %INTEGER%::%RETURN%+2
  • http://www.turnssoft.com/conditions.html#gotomacroline
  • IMPROVEMENTS:
  • Variable option page Auto Refresh:
  • Auto refresh is now available within the Variable Options page.
  • This is useful to monitor the value of all variables during macro run time.
  • Auto refresh is enabled by clicking the 'Refresh' circle picture within the variable options.
  • FIXES:
  • issue whereby newly defined string/integer variables would not hold whilst defined through full conditional IF/IF NOT statements.

New in Mini Mouse Macro 6.5.0.0 (Apr 18, 2017)

  • NEW FEATURES:
  • New Object - CLIPBOARD:
  • The Clipboard object evaluates a condition based on the current value(s) of the system clipboard during evaluation
  • IF | CLIPBOARD | VALUE | TEXT IS | %INTEGER% | DEFINE INTEGER VARIABLE | %INTEGER%::+1 | ELSE | 2 | RUN ACTION | | | | | COPY TO CLIPBOARD | %INTEGER%
  • IF | CLIPBOARD | VALUE | FILE PATH IS | d:macrofish.txt | DELETE FILE | D:Macrofish.txt
  • http://www.turnssoft.com/conditions.html#clipboard
  • New constant string variables:
  • %CLIPBOARD% when referenced, contains the value of the system clipboard
  • %CLIPBOARD_LISTFILES% when referenced, contains the file path(s) of any files within the clipboard
  • http://www.turnssoft.com/conditions.html#clipboard
  • the 'Add Condition' page now has options to 'clear' and 'save' conditions
  • IMPROVEMENTS:
  • Integer Math:
  • Integer Math has had a major improvement by adding math expression options during integer evaluation
  • IF | INTEGER VARIABLE | %INTEGER% | * | 2:: | 10 | DEFINE INTEGER VARIABLE | %INTEGER%::*200
  • IF | INTEGER VARIABLE | %INTEGER% | % | %INTEGER1%::=::%INTEGER2% | COPY TO CLIPBOARD | %INTEGER% | ELSE | 2 | RUN ACTION | | | | DEFINE INTEGER VARIABLE | %INTEGER3%::%3
  • RUN ACTION | | | | DEFINE INTEGER VARIABLE | %INTEGER%::^5
  • RUN ACTION | | | | DEFINE INTEGER VARIABLE | %INTEGER%::MAX%INTEGER1%
  • RUN ACTION | | | | DEFINE INTEGER VARIABLE | %INTEGER%::SQRT%INTEGER1%
  • For all math OBJECT evaluation: http://www.turnssoft.com/conditions.html#integer_variable
  • For all math ACTION evaluation: http://www.turnssoft.com/conditions.html#define_integer_variable
  • The %RANDOM% variable:
  • The %RANDOM% variable can now be ANY custom random range. For example:
  • %RANDOM% - an unrestricted random number between 1 and 2147483647
  • %RANDOM_1-33% - a random number between 1 and 33
  • %RANDOM_50-55% - a random number between 50 and 55
  • %RANDOM_1111-1234% - a random number between 1111 and 1234
  • %RANDOM_50000-100000% - a random number between 50000 and 100000
  • http://www.turnssoft.com/conditions.html#random_integer_variable
  • The 'Edit add entry' and 'Error report' pages now will keep the last defined window size
  • FIXES:
  • RELIST - The relist function now (finally...) will relist items after the manual edit or move in the correct order
  • 'On Top' - Fixed a bug where the main window 'On Top' would not allow 'Add Condition'
  • Added - Added URL links in the 'Update' window (this window) to open in the default browser when clicked

New in Mini Mouse Macro 6.4.0.0 (Jan 10, 2017)

  • NEW FEATURES:
  • Can now add a REMARK to your macro list:
  • To add a REMARK right click the macro list and select 'Add Remark'
  • The REMARK is noted by: [*][DELIM][The remark text]
  • New Action - WAIT MILLISECONDS:
  • Milliseconds can now be used as a WAIT action
  • New Action - INPUT BOX:
  • An Input Box has been added to take input in from users at macro playback. Input from users can be stored at runtime into variables to further direct macro flow
  • RUN ACTION | | | | INPUT BOX | Please enter 1 or 2::User Selection::INTEGER
  • Vist http://www.turnssoft.com/conditions.html#inputbox for more info
  • New Object - PIXEL COLOR:
  • The Pixel Color object has been added to evaluate the state of a single pixel during macro playback
  • IF | PIXEL COLOR | Color [R=145, G=228, B=247]::At Location [X:942 Y:536] | IS THE SAME | WAIT MINUTES | 5
  • Visit http://www.turnssoft.com/conditions.html#pixelcolor for more info
  • Can now skip mouse X and/or Y selectively during playback:
  • To skip a macro line mouse movement edit the mouse X and Y position to read the letter X
  • 1 | X | X | 92 | Left Click Down
  • Skip Mouse X & Y has also been added to the macro list right click 'Edit entry - X & Y Position' and 'Mass Change' options
  • Addition of new constant string variables %TIME% and �TE%
  • %TIME% and �TE% variables hold the current time and date at playback
  • FIXED:
  • GOTO MACRO LINE - The Action GOTO MACRO LINE now can go to line 1
  • Fixed issue with the window size save position option [when enabled] 'locking' position to the tray when minimized exit.

New in Mini Mouse Macro 6.3.0.0 (Jan 10, 2017)

  • NEW FEATURES:
  • New Condition evaluation method added: ELSE
  • - Can now add an ELSE evaluation to conditions:
  • eg1 - (IF/IF NOT) (OBJECT) (OPERATOR) (ACTION) ELSE (IF/IF NOT) (OBJECT) (OPERATOR) (ACTION)
  • eg2 - (IF/IF NOT) (OBJECT) (OPERATOR) (ACTION) ELSE (ACTION)
  • - http://www.turnssoft.com/conditions.html#else for more information
  • New option added to Record to File (Options - Record Options - Record to File)
  • RESTRICTIONS:
  • The free version of Mini Mouse Macro now has a playback restriction of 1500 macro lines.
  • Why? This is plainly to encourage people to upgrade to the pro version. To continue the updates, pay the cost of web hosting, and to measure the limit of success, MMM needs to make a profit. The restriction is a measure to achieve this.
  • I don't want to pay? That's ok. If you want to 'beat' the restriction add a condition at line 1499 to ADD MACRO FROM FILE, or simply have no macro line number above 1499.
  • But Steve....I can't afford 7 Aussie dollars! No worries mate email me for a discount coupon ;) [email protected]
  • IMPROVEMENTS:
  • Greater error handling for File/Folder size condition and Folder File Count
  • Added timeout value option to Network Packet Detected Conditions
  • - http://www.turnssoft.com/conditions.html#networkpacketdetected for more information
  • Added timeout value option to Receive UDP Packet string conditions
  • http://www.turnssoft.com/conditions.html#receiveudppacketstring
  • Added WAIT option to Download from URI action: Can now wait until the download has completed before macro continues.
  • http://www.turnssoft.com/conditions.html#downloadfromuri
  • CHANGES:
  • Changed File/Folder Size condition evaluation order. Now it processes as "IF/IF NOT File/Folder Size (OPERATOR) (SIZE VALUE) (Action)
  • - Check out http://www.turnssoft.com/conditions.html#filesizeandfoldersize for more information
  • Changed Mouse Pos Near condition evaluation order. Now it processes as "IF/IF NOT Mouse Pos Near (OPERATOR) (VALUE) (Action)
  • Check out http://www.turnssoft.com/conditions.html#mousepositionnear
  • Goto Macro Line Action now goes to the number value passed to the action not the value -1
  • FIXED:
  • Fixed improper validation for FILE SIZE (Continue) condition
  • Fixed improper IF NOT Folder Size evaluation evaluation.
  • Fixed 'Search for String' error on Receive UDP Packet String condition
  • Fixed Add Macro From File repeating the 'add' action
  • Fixed Relist Rows incorrect list after manual UP/DOWN edit
  • Fixed improper/inaccurate network packet detection for network conditions when handling packet types

New in Mini Mouse Macro 6.2.0.0 (Jul 20, 2016)

  • Major fix:
  • Fixed major bug reported where whilst recording over a period of time the macro would freeze (coding error)
  • New Features:
  • Added capture of special keys during recording:
  • Launch App1
  • Launch App2
  • Browser back/forward/refresh/stop/search/favorites/home
  • Media play/pause/next track/stop/
  • Launch Mail
  • Select Media
  • Print
  • Zoom
  • Volume Up/Down/Mute
  • Escape
  • Clear
  • BUG FIXES:
  • Fixed Network Packet Condition not evaluating on actions other than 'Continue'
  • Removed duplicate adapter listings on re-selecting a network adapter for the Network Conditions

New in Mini Mouse Macro 6.1.0.0 (Jul 18, 2016)

  • NEW FEATURES:
  • Save the size and location of the main macro window for each load (Settings - Options - Display)
  • BUG FIXES:
  • Fixed problem for some where the macro will not playback after repeated stop-starts (tighter thread control for the playback functions)

New in Mini Mouse Macro 6.0.0.0 (Jul 18, 2016)

  • NEW FEATURES:
  • New recording engine option 'Disable key duplicates' greatly improves macro recording.
  • New playback engine option 'Mouse Capture Ratio' greatly improves macro mouse playback.
  • New condition added: TCP PORT NUMBER - Condition based on open and closed local and remote TCP port numbers.
  • New Action added: Encrypt File/Folder AES & Decrypt File/Folder AES.
  • New Action added: Message Prompt.
  • New Action added: Copy to Clipboard and Paste from Clipboard.
  • Variable and Sound settings pages added.
  • IMPROVEMENTS:
  • Improved Macro Edit function (Settings - Macro Edit)
  • Removed restrictions for Macro Edit and Hotkey saves.
  • Added configurable string and integer variable options.
  • Improved free version update dialog....last time in this msg box.
  • Improved program memory management.
  • BUG FIXES:
  • Fixed 'Ghost Keys' - When keys would add to the queue on a new macro that are not pressed.
  • Fixed ALT+SPACE (Open menu shortcut) being case sensitive.
  • Fixed improper File Size operation (now reads IF SIZE IS X then action)
  • Removed all references to m/s...gotta catch em all.

New in Mini Mouse Macro 5.2.0.0 (Jun 25, 2016)

  • New Features:
  • Working with variables has been added to macro conditions (For detailed info and examples goto the condition help page).
  • %INTEGER% - The ability to define integer variables and perform basic mathematical condition handling (+ - / *).
  • %STRING% - The ability to define string variables and perform text string analysis during condition handling.
  • %RANDOM% - The ability to generate a high random number for variable condition handling.
  • %RANDOM_1-10% - The ability to generate a random number 1-10 for variable condition handling.
  • %RANDOM_1-100% - The ability to generate a random number 1-100 for variable condition handling.
  • %RANDOM_1-1000% - The ability to generate a random number 1-1000 for variable condition handling.
  • %RANDOM_1-10000% - The ability to generate a random number 1-10000 for variable condition handling.
  • %RANDOM_1-100000% - The ability to generate a random number 1-100000 for variable condition handling.
  • Variable entries (%STRING%, %INTEGER%, all %RANDOM% variations) can be output for macro's (For detailed info and examples goto the condition help page).
  • Skip current condition - for example the CONTINUE condition. The option to skip the current waiting condition by clickin on the 'condition...' label.
  • When macro playback error conditions are found the error box is now displayed center bottom of the main macro window.
  • Change default hotkeys unlocked for free version.
  • Macro edit in settings unlocked for free version.
  • Change default hotkeys unlocked for free version.
  • Bug Fix:
  • Fix and redesign of the TIME CONDITION. This has been simplified to have: IS, IS NOT, IS BEFORE CURRENT TIME, IS AFTER CURRENT TIME.
  • Fix DATE CONDITION to match new time condition.
  • Fix DATE AND TIME CONDITION to match new time condition.
  • Macro queue on Auto start not detecting first macro in the queue.
  • Removed reference to m/s (meters per second) to be ms (milliseconds)
  • Some actions not displaying output after selection. Such as load macro not displaying the selected load output.
  • Save error - value can not be null - removed and fixed for blank save strings.
  • KEYPRESS NUMPAD(0-9) has been fixed so that now on recording the numpad the numbers are recorded (NumLock features are still detected)
  • Fix numpad Decimal (.) not being recorded.
  • Fixed the delim variable ' | ' incorrectly loading from MMM_Setting.ini due to spaces.
  • Macro relist on broken undelimitered entries will now throw an error condition.
  • lbl4Object label visible on selected action has been removed.
  • Fixed minor graphical display error: Macro queue under options - loaded settings - active settings requires a crlf formatting

New in Mini Mouse Macro 5.1.0.0 (Nov 22, 2015)

  • Bug Fix:
  • Fix macro queue not loading saved macro queue items.
  • Fix mass change entries cutting the last entry on change.

New in Mini Mouse Macro 5.0.0.0 (Nov 9, 2015)

  • New Features:
  • Conditional entries. Macro flow control can now be achieved with adding conditional entries.
  • Full max window size for Mini Mouse Macro.
  • Network Monitor tool - To monitor live network traffic for a real time evaluation of Mini Mouse Macro network based conditional entries.
  • Detailed error feedback on bad macro entries.
  • Bug Fix:
  • Fix manual edit entry for ctrl+other entries cutting off the final action due to incorrect delim processing.
  • Fix crash on setting macro queue lower case hotkey values.
  • Fix lowercase hotkeys not accounting
  • Fix crash on sort renumbering with bad or incorrect formatting
  • Fix crash on mass change when there are incorrectly formatted macro entries.

New in Mini Mouse Macro 4.1.0.0 (Nov 9, 2015)

  • New Featres:
  • File type association options to set 'Run Macro on Open' or 'Edit Macro on Open' to customize action on .mmmacro files.
  • Bug Fix:
  • Fixed error received on some systems at program launch relating to failing to incorrectly interact with system performance counters. The performance counters are referenced within Mini Mou

New in Mini Mouse Macro 4.0.0.0 (Sep 3, 2015)

  • New Features
  • Macro Queue to stack .mmmacro files for playback.
  • Option to enable .mmmacro file association to double click edit or play .mmmacro saved files.
  • Notification and Playback Error Report on manual edit during playback.
  • Drag and Drop for right click and middle click added.
  • Save as feature added.
  • Advanced macro list edit features.
  • Stop Playback hotkey added.
  • MiniMouseMacro.exe rebuilt under the .NET v4 client framework.
  • Additions:
  • Edit the macro list with CTRL+C, CTRL+V, CTRL+X to copy, paste, and cut single or multiple macro entries.
  • Save and load with CTRL+S and CTRL+L in the macro list.
  • Save button now saves the loaded in macro or a previously saved macro without prompting to overwrite existing.
  • Improvements to the GUI.
  • Greater response time whilst recording and during playback.
  • Bug Fix:
  • Fixed startup variable not catching in MMM_settings.ini.
  • Fixed error during mass change when a poorly formatted entries exists.
  • Removed blank line spaces in right click menu on the macro list.
  • Fixed pause key depressing after Stop key press.
  • Fixed sort numeric fail with poorly formatted entries.
  • Fixed macro playback performance issue when encountering poorly formatted or incorrectly entered macro entries.

New in Mini Mouse Macro 3.0.0.0 (Jan 8, 2015)

  • New Features:
  • Drag and drop .mmmacro file(s) into the macro list.
  • New display design for a larger macro list with sizable frame.
  • Display customization settings to hide panels from the main window.
  • Mass change options for macro list entries.
  • Multi-selection added to macro list entries (ctrl click and mouse drag).
  • Run, Clear, Play, Save and Load options added to macro list entries.
  • Backspace and Delete keys delete selected macro list entries.
  • Ctrl+A selects all macro list entries.
  • Additions:
  • 'On Top' now extends to the Options page and Add Entry pages.
  • Options page and Add Entry pages will be brought forward if launched open.
  • Loop ticked with '0' now reset on a fresh play.
  • Free and Pro versions have customized update text.
  • Bug Fix:
  • Resume from pause with play now denotes the pause button.
  • Macro list entries with 0 time now editable with double click and edit menu.
  • Looping issue fixed where macro will fail to loop on first play.

New in Mini Mouse Macro 2.1.1.0 (Jan 5, 2015)

  • Mini update to change the default hotkey for 'Stop' on MMM free to F10.

New in Mini Mouse Macro 2.1.0.0 (Dec 23, 2014)

  • New option - 'Disable Mouse Playback'

New in Mini Mouse Macro 2.0.0.0 (Aug 5, 2014)

  • Full customization settings page
  • Improvements to the recording engine
  • New features and program options to customize your macro recording and playback
  • Slim down the main recording and playback window and run Mini Mouse Macro in skin mode

New in Mini Mouse Macro 1.7.0.0 (Aug 5, 2014)

  • Drag and Drop now detected automatically
  • Recording thread handling improved

New in Mini Mouse Macro 1.6.1.0 (Jun 30, 2014)

  • Mouse movement capture now rate now at real time
  • Stop play button now removes previous progress
  • On Top' now not selected by default
  • Bug fix for loop count assignment during playback
  • Bug fix for 'sluggish' mouse capture

New in Mini Mouse Macro 1.5.5.0 (Jun 21, 2014)

  • Shift + Direction keys now recorded as shift+[direction]
  • Action keys after Ctrl+ playback now active.

New in Mini Mouse Macro 1.5.4.1 (Mar 3, 2014)

  • Shift + Function keys added to macro recording pool.

New in Mini Mouse Macro 1.5.4.0 (Mar 3, 2014)

  • Function keys F1 through to F14 added to macro recording pool.

New in Mini Mouse Macro 1.5.3.0 (Feb 11, 2014)

  • Sortable numbering added to macro entries
  • Custom loop count (click 'Loop' to define)

New in Mini Mouse Macro 1.5.2.0 (Feb 10, 2014)

  • Improved thread handling during macro playback
  • Less CPU cycles used during macro playback
  • F11 hotkey added to play (start) a macro
  • Progress bar reflex's current running macro completion percentage.

New in Mini Mouse Macro 1.5.1.0 (Feb 3, 2014)

  • Key combination Ctrl+
  • Key combination Alt+
  • Key combination Ctrl+Alt+
  • Recording capture added for keys ESC, INS, HOME, END
  • Recording capture added for arrow keys UP, DOWN, LEFT, RIGHT
  • Custom recording sensitivity value entry.
  • Sensitivity slider values lowered.

New in Mini Mouse Macro 1.5.0.2 (Feb 3, 2014)

  • Increased response time for 'pause' F9 during macro playback.

New in Mini Mouse Macro 1.5.0.1 (Feb 3, 2014)

  • Custom drag and drop added to the 'Add Entry' feature.
  • Drag and drop enable feature change to ALT + SHIFT.

New in Mini Mouse Macro 1.5.0.0 (Feb 3, 2014)

  • Drag and drop feature added.

New in Mini Mouse Macro 1.4.0.1 (Dec 9, 2013)

  • Improved response time for pausing running macro's (now checks running macro every 1 m/s for a pause press).
  • When a running macro is paused a 'pause' border is displayed.
  • Bug fix for 'F9' key press during running macro's.

New in Mini Mouse Macro 1.4.0.0 (Nov 12, 2013)

  • Command line arguments for scripting added.
  • Script Builder added to application.
  • Ability to schedule Mini Mouse Macro tasks.
  • Removal of update prompt on update notification.

New in Mini Mouse Macro 1.3.3.1 (Nov 5, 2013)

  • Minimize to system tray option added under file menu.

New in Mini Mouse Macro 1.3.2.1 (Sep 26, 2013)

  • Bug fix for incorrect auto size on some WinXP and Win7 machines.

New in Mini Mouse Macro 1.3.2.0 (Sep 19, 2013)

  • Improvement to macro capture providing much smother keyboard and mouse capture events.
  • Minimum custom entry macro time lowered to 1 m/s.
  • Update notification text removed if no update is required or the update server is unavailable.

New in Mini Mouse Macro 1.3.1.1 (Sep 18, 2013)

  • Mouse Movements can now be edited from the queue.
  • Donate link added to the help menu.

New in Mini Mouse Macro 1.3.1.0 (Sep 17, 2013)

  • Performance improvements to mouse recording function. Pauses with mouse are no longer recorded & time between mouse movements.

New in Mini Mouse Macro 1.3.0.0 (Sep 16, 2013)

  • Option to record the movement of the mouse with the macro added.

New in Mini Mouse Macro 1.2.4.0 (Sep 16, 2013)

  • Edit Entry' option added to macro queue right click options menu.
  • Improvements to custom entry

New in Mini Mouse Macro 1.2.3.0 (Sep 16, 2013)

  • 'On Top' checkbox added to keep the macro window on top of all other windows.

New in Mini Mouse Macro 1.2.2.0 (Sep 16, 2013)

  • Custom macro addition now can include multiple word actions.

New in Mini Mouse Macro 1.2.1.0 (Sep 10, 2013)

  • Custom macro addition now add's to the selected position in the macro queue.

New in Mini Mouse Macro 1.2.0.2 (Sep 4, 2013)

  • Image's added to context menu for macro queue.

New in Mini Mouse Macro 1.2.0.1 (Sep 4, 2013)

  • Bug fix for custom macro action blocking special keys.

New in Mini Mouse Macro 1.2.0.0 (Sep 4, 2013)

  • Custom macro creation added.
  • Improvement to 'Pause' function.

New in Mini Mouse Macro 1.1.0.1 (Sep 4, 2013)

  • Keys TAB PAGEUP PAGEDOWN PRINTSCREEN , . ; < > : [ ] { } / ? \ | - = _ + ' " ` ~ added.
  • Improvements to uppercase, shift and special character addition.

New in Mini Mouse Macro 1.1.0.0 (Aug 30, 2013)

  • Recording of keys added to the macro. (Aa - Zz) (0,1,2,3,4,5,6,7,8,9) (!,@,#,$,%,^,&,*,(,)) (LShift, RShift, Backspace, Spacebar)
  • Progress bar indication of running macro.
  • Typing speed option.
  • Bug fix to remove first click added to macro if macro button pressed.

New in Mini Mouse Macro 1.0.1.0 Beta (Aug 19, 2013)

  • Settings menu removed pending update
  • Links in the about menu added
  • Splash Screen added
  • Button animation added
  • Improvements to the GUI

New in Mini Mouse Macro 0.0.0.3 Alpha (Aug 16, 2013)

  • Right click capture added to macro.
  • About menu added to application.
  • Hot keys added.
  • Improvements to the GUI.

New in Mini Mouse Macro 0.0.0.2 Alpha (Aug 16, 2013)

  • Time between mouse clicks added to give real time play back for macro.
  • Core .NET framework changed from version 4 to version 3.5 for greater OS version compatibility.