GithubHelp home page GithubHelp logo

fusion-360-total-exporter's People

Contributors

foosel avatar hendrikroth avatar jnesselr avatar lrtnz avatar lynnroth avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fusion-360-total-exporter's Issues

Failed on LEDAssembly, dave20874

At "Writing data!, Project: 12 of 28, Writing design 8 of 18",
Failed while working on d:/fusion 360 export\Hub David Wheeler\Project LED Sign\LED Sign\LED Assembly.f3d
Fusion 360 Traceback

Note: some components were out of date in this assembly.

Script hangs after exporting some number of projects

The script has worked ok ~6mths ago, but a few days ago when I was trying to do the export it suddenly froze (together with F360, killing the application is required). I've re-run it, and it was consistently freezing at the same project. I thought the project is bad, but when I've tweaked the script to export only that project it worked - and when I've excluded that particular project it still froze, only later.

I've spent quite a lot of time debugging the issue, and while I still don't know the root cause, it seems that the script freezes after exporting some number of projects/documents/files - I haven't been able to pinpoint what exactly, but definitely something breaks consistently, and it's related to the amount of exported things. The script hangs in line https://github.com/Jnesselr/fusion-360-total-exporter/blob/master/Fusion%20360%20Total%20Export.py#L138, apparently it tries to open a file but the call never ends.

I'm not attaching the output.log as it doesn't have any useful info. There are no errors, every log line looks ok, and then suddenly there's a line 2023-05-24 05:36:21,052 - INFO - Exporting file "<file name>" - and that's it, no further data. With strategically placed debugging self.log.info('HERE!") I've managed to establish that the line 138 is the culprit, but why - I don't know.

There's a workaround, I've added this piece of code after line https://github.com/Jnesselr/fusion-360-total-exporter/blob/master/Fusion%20360%20Total%20Export.py#L75:

        # Fix for the problem with freezing export - set project_start to whatever was the last freeze on 
        project_start = 0
        if project_index < project_start:
          continue

With that in place, I start the export; it fails (hangs) at project e.g. 6; I change the project_start variable manually to 6 and re-start the export; first 6 projects are ignored, and we start exporting from number 6 onward; Then it freezes again (but later), so I repeat this until all files are exported. Ugly? Sure - but I've already spent too much time debugging, and I don't have hundreds of projects, so currently this manual workaround works for me.

I'm mostly posting this here for others, as I don't think this will be fixed, but hey you never know :-) btw big thanks to the author, this script is a lifesaver!

Tried Installing twice ... nothing happens

Hello, I tried installing this twice ...
downloaded zip file
extracted to a directory
went to add-ins, scripts and add-ins, selected add-ins, clicked the green + sign, pasted the name of the extracted directory
clicked select folder and then nothing

Fusion 360 updated September 26th

Thank you!!

Just found out that you can't switch from an educational account to a personal account. Fun Fact - all of your designs are gone!! This script was a life saver. FreeCAD, here I come. . .

Exporting currently loaded project(s)

I wonder if it would be possible to implement the export of the currently loaded .f3d project(s)? It's impossible to place them back in the hub after free licence expiration. (I have no knowledge of python nor Fusion API)
Thank you for this great script!

Skip by josephduchesne

Didn't look if it works but I think something like this could be a good addition to this project.

josephduchesne@b3ac05d

I just had an error (forgot to make a screenshot or copy) and had to start from the beginning.

Suggestion - select what file types to export

My recent export got through 2 main projects but all I want is the f360 files and no stl/dxf etc. I'll comment the export code out for myself but it would be a good option. Well done, there was some decent effort put in there.

Rescue / Catch exceptions and continue Exporting

Would it be possible to catch/rescue the exception, and continue exporting other files? I have 420 designs to export, and it's crashing on design 20/420.

I am keen to just have it skip this failing design and log it for later. So I can manually export any which failed. For example, the one failing is a Voron2.2 assembly file which is pretty dang complex, and to be fair I can just download the CAD again.

But now that my license has expired. I can't even delete just that one design from the interface to be able to make it continue exporting.

Traceback for reference:

Failed:
Traceback (most recent call last):
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 325, in run
    total_export.run(context)
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 50, in run
    self._export_data(output_path)
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 105, in _export_data
    self._write_data_file(output_path, file)
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 184, in _write_data_file
    self._write_component(file_folder_path, design.rootComponent)
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 220, in _write_component
    self._write_component(sub_path, sub_component)
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 220, in _write_component
    self._write_component(sub_path, sub_component)
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 220, in _write_component
    self._write_component(sub_path, sub_component)
  [Previous line repeated 2 more times]
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 206, in _write_component
    self._write_step(output_path, component)
  File "C:/Users/Rudi/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 231, in _write_step
    options = export_manager.createSTEPExportOptions(output_path, component)
  File "C:/Users/Rudi/AppData/Local/Autodesk/webdeploy/production/62080619ef0c88ebbe32d9c0b5fea9f374fca035/Api/Python/packages\adsk\fusion.py", line 16837, in createSTEPExportOptions
    return _fusion.ExportManager_createSTEPExportOptions(self, *args)
RuntimeError: 3 : The selected folder is not accessible.

Models with Invalid characters for Windows filenames causes the script to fail.

Related to #22

If the model name contains ones of the characters that are invalid for a windows file name the script crashes:
< (less than)
> (greater than)
: (colon)
" (double quote)
/ (forward slash)
\ (backslash)
| (vertical bar or pipe)
? (question mark)
* (asterisk)

e.g. I had a gearbox which had the string "1:4.25" in the name, when I tried to manually export the stp/igs/stl/f3d the name field would appear empty and the export would fail as the script would try to export a nameless file.

DXF export with no stl's

I came across a weird issue while using the exporter. I have several projects that I started sketching but haven't gotten around to actually create a 3d model. For these the DXF is never exported, only project that actually have a 3D model have had their sketches exported.

long path names

I checked the output directory and it seems to be making the pathnames extra long and some parts are not needed?

\hub \project \project name

can we shorten this to
\hub \project \

Duplicate from design causes crash

I use an addon called mapboards pro that will copy all components of a thickness and then lay them out to fit the stock used for cutting.
The exporter plugin crashes when it attempts to export the mapboard copies because it detects duplicates. Not really detects but, at least it sees the duplicate as an issue.

the error thrown is:

FileExistsError: [WinError 183] Cannot create a file when that file already exists: 'E:/AllFusionExport\Hub Michael\Project Furniture\Furniture\Cabinets\Side Slide Drawer.f3d\Side Slide Drawer v2\map\Board 1\SideSlideFront'

I use this addon for lots of projects because I cut them on my cnc. So far, I cannot get past these without first deleting the project that causes it. I do not know if this is possible but, being able to start at a selected project or an individual project would be a great feature. I use projects with multiple sub folders to then store entire types of projects within them. I have a project called furniture that has 50+ designs within those subfolders.

Otherwise, if a duplicate could be put into another subfolder with an enumerated ending to allow for creation of the duplicate folder without running into the crash could be another way to prevent it.

Error just after the export starts

image

i am a free/hobby user

2023-03-30 14:01:44,166 - INFO - Starting export!
2023-03-30 14:01:44,399 - INFO - Exporting hub "Diego Trinciarelli"
2023-03-30 14:01:44,751 - INFO - Exporting project "3D Printers"
2023-03-30 14:01:46,667 - INFO - Exporting file "CalibrationCubeRack"
2023-03-30 14:01:47,548 - INFO - Writing to "C:/temp\Hub Diego Trinciarelli\Project 3D Printers\3D Printers\CalibrationCubeRack.f3d"
2023-03-30 14:01:47,674 - INFO - Writing component "CalibrationCubeRack v1" to "C:/temp\Hub Diego Trinciarelli\Project 3D Printers\3D Printers\CalibrationCubeRack.f3d"
2023-03-30 14:01:47,674 - INFO - Writing step file "C:/temp\Hub Diego Trinciarelli\Project 3D Printers\3D Printers\CalibrationCubeRack.f3d\CalibrationCubeRack v1.stp"
2023-03-30 14:01:48,049 - INFO - Writing stl file "C:/temp\Hub Diego Trinciarelli\Project 3D Printers\3D Printers\CalibrationCubeRack.f3d\CalibrationCubeRack v1.stl"
2023-03-30 14:01:48,356 - INFO - Writing stl body file "C:/temp\Hub Diego Trinciarelli\Project 3D Printers\3D Printers\CalibrationCubeRack.f3d\CalibrationCubeRack v1\Body1.stl"
2023-03-30 14:01:48,706 - INFO - Writing iges file "C:/temp\Hub Diego Trinciarelli\Project 3D Printers\3D Printers\CalibrationCubeRack.f3d\CalibrationCubeRack v1.igs"
2023-03-30 14:01:48,706 - ERROR - Failed while working on "CalibrationCubeRack"
Traceback (most recent call last):
File "C:/Users/vespa/OneDrive/3DP/F360/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 184, in _write_data_file
self._write_component(file_folder_path, design.rootComponent)
File "C:/Users/vespa/OneDrive/3DP/F360/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 208, in _write_component
self._write_iges(output_path, component)
File "C:/Users/vespa/OneDrive/3DP/F360/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 292, in _write_iges
export_manager.execute(options)
File "C:\Users/vespa/AppData/Local/Autodesk/webdeploy/production/540c9578410bc15ff261605667cfced82aa9ac6d/Api/Python/packages\adsk\fusion.py", line 18885, in execute
return _fusion.ExportManager_execute(self, exportOptions)
RuntimeError: 3 : Cannot execute the export operation to create the file in the format specified by the ExportOptions as the user is restricted.

Simply does nothing after clicking Run

I added the directory, selected the script and hit run, it seems like simply nothing happens.

This is on Mac OS 10.14.6 using 2.0.5357 using a "Fusion 360 Student" plan.

Could this be a Mac OS issue? At first glance I'm not seeing any OS-specific code that could fail... also, nothing seems to actively "fail" (no Exceptions thrown, it feels like it simply doesn't run in the first place)...?

I also found a "Debug" button in the drop-down area of the Run button, but it doesn't do anything either, as far as I can tell...

Special characters

Hello,

Looks like a good script/plugin, started and it said 470 designs, oh well just have to wait.
Just I noticed that Γ…Γ₯ÄÀÖâ isn't exported correct. They are just removed from the names.

Saves 1 file and then fails every time

The script promptly fails. It exported 1 file. I am using a personal license.

The most obvious thing I'm noticing is:
RuntimeError: 3 : Cannot execute the export operation to create the file in the format specified by the ExportOptions as the user is restricted.
Full output.log:

2023-09-21 13:16:22,914 - INFO - Starting export!
2023-09-21 13:16:23,345 - INFO - Exporting hub "ITS-LIT-IT"
2023-09-21 13:16:23,897 - INFO - Exporting project "Assets"
2023-09-21 13:16:24,522 - INFO - No files to export for this project
2023-09-21 13:16:24,522 - INFO - Exporting project "Imaging Bench"
2023-09-21 13:16:25,701 - INFO - Exporting file "USB Extension Lock - A to A"
2023-09-21 13:16:28,105 - ERROR - Opening USB Extension Lock - A to A failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:28,218 - INFO - Exporting file "USB Extension Lock - A to B"
2023-09-21 13:16:30,433 - ERROR - Opening USB Extension Lock - A to B failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:30,547 - INFO - Exporting file "Amazon Basics Charger"
2023-09-21 13:16:33,071 - ERROR - Opening Amazon Basics Charger failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:33,255 - INFO - Exporting file "Keypad Holder"
2023-09-21 13:16:36,003 - ERROR - Opening Keypad Holder failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:36,104 - INFO - Exporting file "96w Apple Charger"
2023-09-21 13:16:38,204 - ERROR - Opening 96w Apple Charger failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:38,304 - INFO - Exporting file "Leg"
2023-09-21 13:16:40,692 - ERROR - Opening Leg failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:40,817 - INFO - Exporting file "Top"
2023-09-21 13:16:42,799 - ERROR - Opening Top failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:42,907 - INFO - Exporting file "Table Assembly"
2023-09-21 13:16:46,415 - ERROR - Opening Table Assembly failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:46,551 - INFO - Exporting file "Shelf"
2023-09-21 13:16:47,647 - ERROR - Opening Shelf failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:47,648 - INFO - Finished exporting project "Imaging Bench"
2023-09-21 13:16:47,878 - INFO - Exporting project "Default Project"
2023-09-21 13:16:48,723 - INFO - Exporting file "Barcode Isolator"
2023-09-21 13:16:49,911 - ERROR - Opening Barcode Isolator failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:16:49,911 - INFO - Finished exporting project "Default Project"
2023-09-21 13:16:49,911 - INFO - Exporting project "Zebra Adapter"
2023-09-21 13:16:50,256 - INFO - No files to export for this project
2023-09-21 13:16:50,256 - INFO - Finished exporting hub "ITS-LIT-IT"
2023-09-21 13:16:50,257 - INFO - Exporting hub "Josh's House"
2023-09-21 13:16:50,547 - INFO - Exporting project "Admin Project"
2023-09-21 13:16:53,531 - INFO - Exporting file "Air Tag Snaps (V1 Deprecated)"
2023-09-21 13:16:54,950 - INFO - Writing to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:16:55,055 - INFO - Writing component "Air Tag Snaps v3" to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:16:55,056 - INFO - Writing step file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stp"
2023-09-21 13:16:55,630 - INFO - Writing stl file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stl"
2023-09-21 13:16:55,864 - INFO - Writing stl body file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3\AirTag Base.stl"
2023-09-21 13:16:56,053 - INFO - Writing stl body file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3\AirTag Lid.stl"
2023-09-21 13:16:56,282 - INFO - Writing iges file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.igs"
2023-09-21 13:16:56,286 - ERROR - Failed while working on "Air Tag Snaps (V1 Deprecated)"
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 184, in _write_data_file
    self._write_component(file_folder_path, design.rootComponent)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 208, in _write_component
    self._write_iges(output_path, component)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 292, in _write_iges
    export_manager.execute(options)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\fusion.py", line 19748, in execute
    return _fusion.ExportManager_execute(self, exportOptions)
RuntimeError: 3 : Cannot execute the export operation to create the file in the format specified by the ExportOptions as the user is restricted.
2023-09-21 13:20:05,191 - INFO - Starting export!
2023-09-21 13:20:05,401 - INFO - Exporting hub "ITS-LIT-IT"
2023-09-21 13:20:05,768 - INFO - Exporting project "Assets"
2023-09-21 13:20:06,255 - INFO - No files to export for this project
2023-09-21 13:20:06,255 - INFO - Exporting project "Imaging Bench"
2023-09-21 13:20:07,429 - INFO - Exporting file "USB Extension Lock - A to A"
2023-09-21 13:20:09,008 - ERROR - Opening USB Extension Lock - A to A failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:09,096 - INFO - Exporting file "USB Extension Lock - A to B"
2023-09-21 13:20:10,049 - ERROR - Opening USB Extension Lock - A to B failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:10,142 - INFO - Exporting file "Amazon Basics Charger"
2023-09-21 13:20:11,143 - ERROR - Opening Amazon Basics Charger failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:11,241 - INFO - Exporting file "Keypad Holder"
2023-09-21 13:20:12,536 - ERROR - Opening Keypad Holder failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:12,676 - INFO - Exporting file "96w Apple Charger"
2023-09-21 13:20:14,192 - ERROR - Opening 96w Apple Charger failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:14,295 - INFO - Exporting file "Leg"
2023-09-21 13:20:15,323 - ERROR - Opening Leg failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:15,413 - INFO - Exporting file "Top"
2023-09-21 13:20:16,424 - ERROR - Opening Top failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:16,520 - INFO - Exporting file "Table Assembly"
2023-09-21 13:20:17,689 - ERROR - Opening Table Assembly failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:17,830 - INFO - Exporting file "Shelf"
2023-09-21 13:20:18,923 - ERROR - Opening Shelf failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:18,923 - INFO - Finished exporting project "Imaging Bench"
2023-09-21 13:20:19,198 - INFO - Exporting project "Default Project"
2023-09-21 13:20:19,864 - INFO - Exporting file "Barcode Isolator"
2023-09-21 13:20:21,245 - ERROR - Opening Barcode Isolator failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:20:21,245 - INFO - Finished exporting project "Default Project"
2023-09-21 13:20:21,245 - INFO - Exporting project "Zebra Adapter"
2023-09-21 13:20:21,559 - INFO - No files to export for this project
2023-09-21 13:20:21,559 - INFO - Finished exporting hub "ITS-LIT-IT"
2023-09-21 13:20:21,559 - INFO - Exporting hub "Josh's House"
2023-09-21 13:20:21,804 - INFO - Exporting project "Admin Project"
2023-09-21 13:20:24,451 - INFO - Exporting file "Air Tag Snaps (V1 Deprecated)"
2023-09-21 13:20:25,879 - INFO - Writing to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:20:25,983 - INFO - Writing component "Air Tag Snaps v3" to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:20:25,984 - INFO - Step file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stp" already exists
2023-09-21 13:20:25,984 - INFO - Stl file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stl" already exists
2023-09-21 13:20:25,984 - INFO - Writing iges file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.igs"
2023-09-21 13:20:25,986 - ERROR - Failed while working on "Air Tag Snaps (V1 Deprecated)"
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 184, in _write_data_file
    self._write_component(file_folder_path, design.rootComponent)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 208, in _write_component
    self._write_iges(output_path, component)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 292, in _write_iges
    export_manager.execute(options)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\fusion.py", line 19748, in execute
    return _fusion.ExportManager_execute(self, exportOptions)
RuntimeError: 3 : Cannot execute the export operation to create the file in the format specified by the ExportOptions as the user is restricted.
2023-09-21 13:27:36,366 - INFO - Starting export!
2023-09-21 13:27:36,608 - INFO - Exporting hub "ITS-LIT-IT"
2023-09-21 13:27:37,040 - INFO - Exporting project "Assets"
2023-09-21 13:27:37,840 - INFO - No files to export for this project
2023-09-21 13:27:37,840 - INFO - Exporting project "Imaging Bench"
2023-09-21 13:27:39,103 - INFO - Exporting file "USB Extension Lock - A to A"
2023-09-21 13:27:40,530 - ERROR - Opening USB Extension Lock - A to A failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:40,610 - INFO - Exporting file "USB Extension Lock - A to B"
2023-09-21 13:27:41,475 - ERROR - Opening USB Extension Lock - A to B failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:41,549 - INFO - Exporting file "Amazon Basics Charger"
2023-09-21 13:27:42,554 - ERROR - Opening Amazon Basics Charger failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:42,637 - INFO - Exporting file "Keypad Holder"
2023-09-21 13:27:43,641 - ERROR - Opening Keypad Holder failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:43,718 - INFO - Exporting file "96w Apple Charger"
2023-09-21 13:27:44,779 - ERROR - Opening 96w Apple Charger failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:44,857 - INFO - Exporting file "Leg"
2023-09-21 13:27:46,224 - ERROR - Opening Leg failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:46,292 - INFO - Exporting file "Top"
2023-09-21 13:27:47,348 - ERROR - Opening Top failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:47,419 - INFO - Exporting file "Table Assembly"
2023-09-21 13:27:48,449 - ERROR - Opening Table Assembly failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:48,539 - INFO - Exporting file "Shelf"
2023-09-21 13:27:49,461 - ERROR - Opening Shelf failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:49,461 - INFO - Finished exporting project "Imaging Bench"
2023-09-21 13:27:49,790 - INFO - Exporting project "Default Project"
2023-09-21 13:27:50,255 - INFO - Exporting file "Barcode Isolator"
2023-09-21 13:27:51,563 - ERROR - Opening Barcode Isolator failed!
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 138, in _write_data_file
    document = self.documents.open(file)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\core.py", line 9614, in open
    return _core.Documents_open(self, dataFile, visible)
RuntimeError: 3 : Design is located in another team.
You may not be able to save changes you make to this design.
2023-09-21 13:27:51,563 - INFO - Finished exporting project "Default Project"
2023-09-21 13:27:51,563 - INFO - Exporting project "Zebra Adapter"
2023-09-21 13:27:51,880 - INFO - No files to export for this project
2023-09-21 13:27:51,880 - INFO - Finished exporting hub "ITS-LIT-IT"
2023-09-21 13:27:51,880 - INFO - Exporting hub "Josh's House"
2023-09-21 13:27:52,242 - INFO - Exporting project "Admin Project"
2023-09-21 13:27:55,106 - INFO - Exporting file "Air Tag Snaps (V1 Deprecated)"
2023-09-21 13:27:56,444 - INFO - Writing to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:27:56,537 - INFO - Writing component "Air Tag Snaps v3" to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:27:56,537 - INFO - Step file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stp" already exists
2023-09-21 13:27:56,537 - INFO - Stl file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stl" already exists
2023-09-21 13:27:56,537 - INFO - Writing iges file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.igs"
2023-09-21 13:27:56,539 - ERROR - Failed while working on "Air Tag Snaps (V1 Deprecated)"
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 184, in _write_data_file
    self._write_component(file_folder_path, design.rootComponent)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 208, in _write_component
    self._write_iges(output_path, component)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 292, in _write_iges
    export_manager.execute(options)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\fusion.py", line 19748, in execute
    return _fusion.ExportManager_execute(self, exportOptions)
RuntimeError: 3 : Cannot execute the export operation to create the file in the format specified by the ExportOptions as the user is restricted.
2023-09-21 13:33:12,289 - INFO - Starting export!
2023-09-21 13:33:12,831 - INFO - Exporting hub "Josh's House"
2023-09-21 13:33:13,247 - INFO - Exporting project "Admin Project"
2023-09-21 13:33:15,952 - INFO - Exporting file "Air Tag Snaps (V1 Deprecated)"
2023-09-21 13:33:16,929 - INFO - Writing to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:33:17,044 - INFO - Writing component "Air Tag Snaps v3" to "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d"
2023-09-21 13:33:17,045 - INFO - Step file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stp" already exists
2023-09-21 13:33:17,045 - INFO - Stl file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.stl" already exists
2023-09-21 13:33:17,045 - INFO - Writing iges file "C:/Users/jameszjo/Desktop/Fusion 360\Hub Joshs House\Project Admin Project\Admin Project\Air Tag Snaps V1 Deprecated.f3d\Air Tag Snaps v3.igs"
2023-09-21 13:33:17,047 - ERROR - Failed while working on "Air Tag Snaps (V1 Deprecated)"
Traceback (most recent call last):
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 184, in _write_data_file
    self._write_component(file_folder_path, design.rootComponent)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 208, in _write_component
    self._write_iges(output_path, component)
  File "C:/Users/jameszjo/Downloads/fusion-360-total-exporter-master/Fusion 360 Total Export.py", line 292, in _write_iges
    export_manager.execute(options)
  File "C:\Users/jameszjo/AppData/Local/Autodesk/webdeploy/production/e3fd45ba03e541f75bf8195292579861b6ebb663/Api/Python/packages\adsk\fusion.py", line 19748, in execute
    return _fusion.ExportManager_execute(self, exportOptions)
RuntimeError: 3 : Cannot execute the export operation to create the file in the format specified by the ExportOptions as the user is restricted.

Newer version that works in July 2023 is here

I have found this script to crash with errors.

A newer version of the script is here:

https://github.com/TehDmitry/fusion-360-total-exporter/blob/master/Fusion%20360%20Total%20Export.py

This version is a lot newer and about 500 lines of python code rather than about 300 in this repo.

Good news is, the later one seems to work (July 2023).

The Utilities > ADD-INS > Scripts > My Scripts > Fusion 360 Total Export can be edited (click edit) and paste the new Python code into the opened files and exit. This will update the one in F360.

Import after export

Hey there,

really nice plugin.
Is there also an importer available? If I upload multiple .f3d files in the hub there is no design file. Only cad files.
When I upload the file in Fusion desktop and save this, the correct file type is shown (Design).

Thanks for your answers

Failed, see screenshots

Successfully exported five (of 53 total) projects, then failed on the sixth.

image

image

I can upload the file if it'll help.

THANK YOU for making this, BTW. I hope I can get it to work.
-Aaron

Crash when Exporting Sketches

2020_09_22_13_42.txt
exporter error

When exporting sketches as .dxf is enabled and there is a drawing in the folder being exported it crashes. The error message references 'AttributeError: 'NoneType' object has no attribute 'design'.

Script finds file that does not exist in my hub.

According to the log file it looks like it errored out on a file that I cannot find any refrence to within fusion or my online myfusion hub, log attached.

Ability to skip and continue would be greatly appreciated. Thank you so much for making this script, its critically important.

output.log
.

Tried to run in FreeCAD and failed

Hello!

I just ran your script from a link in FreeCAD 0.21.2 and got the following failure messages in the Report View.

Please advise.

17:51:54 (js) Uncaught SyntaxError: Failed to execute 'matches' on 'Element': ':modal' is not a valid selector.
17:51:55 (js) Uncaught SyntaxError: Failed to execute 'matches' on 'Element': ':modal' is not a valid selector.
17:51:55 (js) Uncaught (in promise) TypeError: this.styledInputContent.replaceChildren is not a function
17:51:55 (js) Uncaught (in promise) TypeError: this.styledInputContent.replaceChildren is not a function
17:51:55 (js) TypeError: e.replaceAll is not a function
17:51:55 (js) Uncaught TypeError: e.replaceAll is not a function
17:52:18 (js) TypeError: e.replaceAll is not a function
17:52:18 (js) Uncaught TypeError: e.replaceAll is not a function
17:52:18 (js) Uncaught (in promise) TypeError: t.replaceChildren is not a function
17:52:38 (js) Uncaught (in promise) TypeError: t.replaceChildren is not a function

Feature Request: make hub selectable from where to export from.

Hi all,

is there a way of selecting the Hubs to export files from? I am in two hubs, one personal and one from my company. However, the company's hub is listed first, and therefore, the tool exports this hub's files first. This is unfortunate, as there are a lot of files and before I get through them, Fusion 360 crashes every time.

It would be a nice addition if one could easily select the hub or download only from an active hub.

Best wishes,
Martin

Feature Request - flat packs & drawing DXF out

I've never done scripting for fusion and unsure if I have time to learn.

Think you can add export to drawing formats, and DXFs for Flat Pack of sheet metal projects?

Worth a shot asking; no idea how easy their scripting is to work with or how hard. I've been generating things manually all afternoon

Warn if path is to long

Since it does some scanning for files before it copies it maybe it could stop and warn that path will be to long and list which ones. For me even with long path enabled in Windows 10, Fusion still does not handle it.

Feature request: Select Projects to export

As I have some very big assemblies that constantly fail I would like to be able to choose the different projects so I can at least backup these. Later I can take care of the failing projects and try to make them smaller or find another way to backup these.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.