<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MIDI&#x2F;Sound bug in SP3 for the Mac]]></title><description><![CDATA[<p dir="auto">At some point in time, Apple changed a bunch of the sound/midi handling APIs. I hadn't run the code in awhile but somebody pointed out that SP3 for the Mac wasn't working at all because it failed at launch with an error concerning MusicDeviceMIDIEvent. Turns out that the APIs used to map that function into the AudioToolbox.framework but now it is resident in AudioUnit.framework.</p>
<p dir="auto">The fix to SP3 for the Mac is pretty straightforward. You need to add a line to the dls_synth.rb file (it is in the Midiator/lib directory within the SP3 installation directory structure inside of the Application Support directory)</p>
<p dir="auto">Change dls_synth.rb by adding a second dlload command directly after the dlload command for AudioToolbox. Create a copy of the line and substitute AudioUnit for AudioToolbox. You need both dlload commands since the audio support code is scattered across both frameworks.</p>
]]></description><link>https://community.sketchucation.com/topic/133404/midi-sound-bug-in-sp3-for-the-mac</link><generator>RSS for Node</generator><lastBuildDate>Fri, 06 Mar 2026 18:31:52 GMT</lastBuildDate><atom:link href="https://community.sketchucation.com/topic/133404.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 21 Feb 2012 04:17:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MIDI&#x2F;Sound bug in SP3 for the Mac on Fri, 16 Mar 2012 04:18:10 GMT]]></title><description><![CDATA[<p dir="auto">For those interested in specified directions:</p>
<p dir="auto">Find:</p>
<p dir="auto"><strong>module AudioToolbox<br />
extend DL::Importable<br />
dlload '/System/Library/Frameworks/AudioToolbox.framework/Versions/Current/AudioToolbox'</strong></p>
<p dir="auto">and change to: (note blue line at bottom)</p>
<p dir="auto"><strong>module AudioToolbox<br />
extend DL::Importable<br />
dlload '/System/Library/Frameworks/AudioToolbox.framework/Versions/Current/AudioToolbox'<br />
<span style="color:#0040ff">dlload '/System/Library/Frameworks/AudioUnit.framework/Versions/Current/AudioUnit'</span></strong></p>
]]></description><link>https://community.sketchucation.com/post/1316309</link><guid isPermaLink="true">https://community.sketchucation.com/post/1316309</guid><dc:creator><![CDATA[chippwalters]]></dc:creator><pubDate>Fri, 16 Mar 2012 04:18:10 GMT</pubDate></item></channel></rss>