Macro Move Assembly/it

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

Description
Questa macro crea un pannello di controllo per spostare i vincoli di assembly a passi.

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

Descrizione

Questa macro crea un "pannello di controllo" per spostare ogni giunto dell'assembly in modo indipendente, passo passo.

Utilizzo

Qui si trova della documentazione:

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

Oppure nella discussione dedicata sul forum:

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")