Macro Move Assembly

Generic macro icon. Create your personal icon with the same name of the macro Macro Move Assembly

Description
This macro creates a control panel to move assembly joints in steps.

Macro version: 0.4
Last modified: 2026-05-26
Author: onekk
Author
onekk
Download
Links
Macro Version
0.4
Date last modified
2026-05-26
FreeCAD Version(s)
None
Default shortcut
None
See also
None

Description

This macro creates a 'control panel' to move each assembly joint independently in steps.

Usage

You will find some documentation here:

https://codeberg.org/onekk/freecad-macro/src/branch/main/assembly_move/README.md

Or in the dedicated forum thread:

https://forum.freecad.org/viewtopic.php?t=105451

Script

assembly_move.FCMacro

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://codeberg.org/onekk/freecad-macro/raw/branch/main/assembly_move/assembly_move.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://codeberg.org/onekk/freecad-macro/raw/branch/main/assembly_move/assembly_move.FCMacro")