<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Solution for using more than one slicer software (MAC OS ONLY) in Fusion Support Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-support-forum/solution-for-using-more-than-one-slicer-software-mac-os-only/m-p/13010462#M11268</link>
    <description>&lt;P&gt;I'm using 3d print command a lot in Fusion. I even assigned it to shortcut Control+P&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was using Cura which i only managed to work by selecting "Custom" from the dropdown list.&lt;/P&gt;&lt;P&gt;Recently i bouth a new BambuLab printer and since BambuStudio.app is not listed, i made a custom app that will let you choose between your slicers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open Script Editor.app which is installed by default on macOS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a new appleScript and paste the code below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;on open droppedItems
	-- Prompt the user to choose an application
	set appChoice to choose from list {"Bambu Studio", "Cura"} with prompt "Choose an application to open the file with:" default items {"Bambu Studio"}
	
	-- Check if the user made a choice
	if appChoice is false then
		display dialog "No application selected." buttons {"OK"} default button "OK"
		return
	end if
	
	-- Determine the application to use
	if item 1 of appChoice is "Bambu Studio" then
		set appPath to "/Applications/BambuStudio.app"
	else if item 1 of appChoice is "Cura" then
		set appPath to "/Applications/UltiMaker\\ Cura.app"
	end if
	
	-- Process each dropped item
	repeat with i from 1 to number of items in droppedItems
		-- Get the file path of the dropped item
		set thisItem to item i of droppedItems
		set filePath to POSIX path of thisItem
		
		-- Open the file with the chosen application
		do shell script "open -a " &amp;amp; appPath &amp;amp; " " &amp;amp; quoted form of filePath
	end repeat
end open&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code includes only 2 options for Cura and BambuStudio&lt;/P&gt;&lt;P&gt;Modify the code, paths to the apps or number of options if necessary&lt;/P&gt;&lt;P&gt;Use ChatGPT if you don't feel safe modifying the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Export it as an .app file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;choose the new app as the custom slicer in Fusion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Voila!&lt;/P&gt;</description>
    <pubDate>Mon, 09 Sep 2024 23:52:08 GMT</pubDate>
    <dc:creator>egemen1600</dc:creator>
    <dc:date>2024-09-09T23:52:08Z</dc:date>
    <item>
      <title>Solution for using more than one slicer software (MAC OS ONLY)</title>
      <link>https://forums.autodesk.com/t5/fusion-support-forum/solution-for-using-more-than-one-slicer-software-mac-os-only/m-p/13010462#M11268</link>
      <description>&lt;P&gt;I'm using 3d print command a lot in Fusion. I even assigned it to shortcut Control+P&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was using Cura which i only managed to work by selecting "Custom" from the dropdown list.&lt;/P&gt;&lt;P&gt;Recently i bouth a new BambuLab printer and since BambuStudio.app is not listed, i made a custom app that will let you choose between your slicers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open Script Editor.app which is installed by default on macOS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a new appleScript and paste the code below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;on open droppedItems
	-- Prompt the user to choose an application
	set appChoice to choose from list {"Bambu Studio", "Cura"} with prompt "Choose an application to open the file with:" default items {"Bambu Studio"}
	
	-- Check if the user made a choice
	if appChoice is false then
		display dialog "No application selected." buttons {"OK"} default button "OK"
		return
	end if
	
	-- Determine the application to use
	if item 1 of appChoice is "Bambu Studio" then
		set appPath to "/Applications/BambuStudio.app"
	else if item 1 of appChoice is "Cura" then
		set appPath to "/Applications/UltiMaker\\ Cura.app"
	end if
	
	-- Process each dropped item
	repeat with i from 1 to number of items in droppedItems
		-- Get the file path of the dropped item
		set thisItem to item i of droppedItems
		set filePath to POSIX path of thisItem
		
		-- Open the file with the chosen application
		do shell script "open -a " &amp;amp; appPath &amp;amp; " " &amp;amp; quoted form of filePath
	end repeat
end open&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code includes only 2 options for Cura and BambuStudio&lt;/P&gt;&lt;P&gt;Modify the code, paths to the apps or number of options if necessary&lt;/P&gt;&lt;P&gt;Use ChatGPT if you don't feel safe modifying the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Export it as an .app file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;choose the new app as the custom slicer in Fusion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Voila!&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 23:52:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-support-forum/solution-for-using-more-than-one-slicer-software-mac-os-only/m-p/13010462#M11268</guid>
      <dc:creator>egemen1600</dc:creator>
      <dc:date>2024-09-09T23:52:08Z</dc:date>
    </item>
  </channel>
</rss>

