Hi there,
with a little tinkering i found a way to start slic3r directly from fusion 360 with loading the object into the gui - ON WINDOWS 😉
Disclaimer: you need to have some knowledge of bat files.
I made a start-slic3r.bat file on the desktop for testing but you can store it where ever you want.
@echo off
cd "c:\Program Files\Prusa3D\Slic3r"
@start C:\"Program Files"\Prusa3D\Slic3r\wperl.exe slic3r.pl --gui %1 --DataDir "C:\Users\Public\Documents\Prusa3D\Slic3r settings MK2"
exit
Maybe you need to adjust the path to your computer - as I have slicer installed with the prusa software package for me it is like the example above.
Little explanation (i try):
@Anonymous off --> will not show anything in the little command line window which will open
cd "c:\path to slicer" --> changes into the slicer dir
@Anonymous --> executes a program as new thread (I´m guessing this - otherwise you wouldn´t be able to close the cmd window)
the line after @start is taken from the settings of the desktop icon --> it runs wperl.exe and starts slic3r.pl with the --datadir to my prusa printer (i dont think you need this).
the matchwinners here were the "--gui" without this slic3r would just create the gcode directly and the "%1" which contains the path to the temp folder where fusion 360 is storing the model for this export function.
exit --> closes the cmd window (not slic3r)
I´ll post another code here which should be more universal then my special prusa something config:
@echo off
cd PATH_TO_SLICER_DIR
//when using slic3r with a perl interpreter:
@start PATH_TO_WPERL\wperl.exe slic3r.pl --gui %1
//OR:
//when using the slic3r.exe from the precomplied download (haven´t tested this - but it should work in this fashion):
@start PATH_TO_SLICER/slic3r.exe --gui %1
exit
This start-slic3r.bat file can´t be selected in the user defined 3d print program menu cause its not an .exe - but go to the folder (in my case its "desktop") and type the file name of the bat file you created into the filename - field. for me it did even autocomplete it after the first few letters. hit enter and test it.
I hope this helps you out a bit.
I´d guess that this could be translated to mac in a similar fashion.
If you have any troubles with this - i´ll try to help - you can even test this by hand when using the part after @start on the cmd directly (you need to cd into the correct directory first and need to provide a real stl-file instead of %1) - to figure out the correct paths you need. Keep in mind that path_names with spaces need to be within "".
have fun and feel free to ask if you have any trouble.
Regards,
Richard