Macro MacroToolbarManager
| Descrizione |
|---|
| Gestione facilitata delle barre degli strumenti macro personalizzate Versione macro: 0.2026.07.20b Ultima modifica: 20-07-2026 Versione FreeCAD: Python 3 versions Download: ToolBar Icon Autore: TheMarkster |
| Autore |
| TheMarkster |
| Download |
| ToolBar Icon |
| Link |
| Full Documentation on Github Forum discussion page Raccolta di macro Come installare le macro Personalizzare la toolbar |
| Versione macro |
| 0.2026.07.20b |
| Data ultima modifica |
| 20-07-2026 |
| Versioni di FreeCAD |
| Python 3 versions |
| Scorciatoia |
| Nessuna |
| Vedere anche |
| Nessuno |
Descrizione
MacroToolbarManager semplifica la modifica delle barre degli strumenti macro personalizzate.
La documentazione completa può essere trovata su github: MacroToolbarManager. Nota: l'ultima versione richiede una versione recente di FreeCAD. Se non dovesse funzionare, provare la versione 2023.10.27 disponibile al link GitHub indicato sopra.
Pagina di discussione sul forum per questa macro: Forum
Schermata della macro MacroToolbarManager
Legenda
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")
Script
Macro MacroToolbarManager.FCMacro