| Description |
|---|
| Easily manage custom macro toolbars Macro version: 0.2026.07.20b Last modified: 2026-07-20 FreeCAD version: Python 3 versions Download: ToolBar Icon Author: TheMarkster |
| Author |
| TheMarkster |
| Download |
| ToolBar Icon |
| Links |
| Full Documentation on Github Forum discussion page Macros recipes How to install macros |
| Macro Version |
| 0.2026.07.20b |
| Date last modified |
| 2026-07-20 |
| FreeCAD Version(s) |
| Python 3 versions |
| Default shortcut |
| None |
| See also |
| None |
MacroToolbarManager makes it easy to edit custom macro toolbars.
Full documentation can be found on github: MacroToolbarManager. Note: latest version requires recent version of FreeCAD. If it doesn't work, try the 2023.10.27 version available at the above github link.
Forum discussion page for this macro: Forum
Macro MacroToolbarManager screenshot
Temporary code for external macro link. Do not use this code. This code is used exclusively by Addon Manager. Link for optional manual installation: Macro
# This code is copied instead of the original macro code
# to guide the user to the online download page.
# Use it if the code of the macro is larger than 64 KB and cannot be included in the wiki
# or if the RAW code URL is somewhere else in the wiki.
from PySide import QtGui, QtCore
diag = QtGui.QMessageBox(QtGui.QMessageBox.Information,
"Information",
"This macro must be downloaded from this link\n"
"\n"
"https://raw.githubusercontent.com/mwganson/MacroToolbarManager/refs/heads/main/MacroToolbarManager.FCMacro" + "\n"
"\n"
"Quit this window to access the download page")
diag.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()
import webbrowser
webbrowser.open("https://raw.githubusercontent.com/mwganson/MacroToolbarManager/refs/heads/main/MacroToolbarManager.FCMacro")
Macro MacroToolbarManager.FCMacro