@cecilius2
cecelius2
SONARtist
After an easy install, had issues with the standalone version - got a fix for that after I had found the solution on IK's Forum.
Could you post a link here to the fix page you mention on the IKMforum? I want to make sure that I have it correct. The only thing I saw over at the IKM forum was to use the asio4all drivers first. A link to the fix would be helpful. Thanks.
Disclaimer: Before anyone acts on the following, please note that I do not take any responsibility for any actions you take in trying this fix, that may lead to the incorrect working of SONAR, SampleTank, etc. PLEASE MAKE A BACKUP OF YOUR "SampleTank 3.settings" FILE BEFOREHAND - just in case. Basically, I had issues with the ST3 standalone crashing when opening the app. My ASIO system (SSL Soundscape MADIXtreme) was not recognised. Although I saw the ASIO4ALL solution, I did not use this, but it seems to have worked for some ...
This is the answer I got directly from IK, and which was posted beforehand on the IK Forum (Thanks to Robert Stallard) :-
==============================
- 1 - Navigate to and open the "SampleTank 3.settings" file in a text editor:
C:\Users\Username\AppData\Roaming\IK Multimedia\SampleTank 3\SampleTank 3.settings
To open this file, right-click on it and select "Open with..." from the context menu and choose your text editor.
- 2 - Edit the audio device settings as follows:
The file contains the following XML code (or something similar):
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<PROPERTIES>
<VALUE name="audioDeviceState">
<DEVICESETUP deviceType="ASIO" audioOutputDeviceName="" audioInputDeviceName="">
<MIDIINPUT name="MIDI (Lynx L22)"/>
</DEVICESETUP>
</VALUE>
<VALUE name="midiIsAny" val="0"/>
</PROPERTIES>
Note that the settings for "audioOutputDeviceName" and "audioInputDeviceName" are empty. Enter the name for your corresponding ASIO audio interface within the quotes following each setting, as follows (in my case, my audio device is "LYNX L22):
<?xml version="1.0" encoding="UTF-8"?>
<PROPERTIES>
<VALUE name="audioDeviceState">
<DEVICESETUP deviceType="ASIO" audioOutputDeviceName="Lynx L22" audioInputDeviceName="Lynx L22">
<MIDIINPUT name="MIDI (Lynx L22)"/>
</DEVICESETUP>
</VALUE>
<VALUE name="midiIsAny" val="0"/>
</PROPERTIES>
To find your audio device name, open your ASIO driver/audio interface configuration settings in Windows Control Panel. Alternatively, look in your DAW software audio device ASIO settings.
- 3 - Save the file and run ST3 standalone.
If it opens, go into the Audio/MIDI settings in ST3 and configure as you wish. ST3 started working for me after this. After exiting ST3, the "SampleTank 3.settings" file looks something like this:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<PROPERTIES>
<VALUE name="audioDeviceState">
<DEVICESETUP deviceType="ASIO" audioOutputDeviceName="Lynx L22" audioInputDeviceName="Lynx L22"
audioDeviceRate="48000" audioDeviceOutChans="11">
<MIDIINPUT name="MIDI (Lynx L22)"/>
</DEVICESETUP>
</VALUE>
<VALUE name="midiIsAny" val="0"/>
</PROPERTIES>
Senior Technical Support - IK Multimedia
==============================
Edits: Backslashes added to folder address at beginning ...