<?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[[ANSWERED] auto re-open Isadora on crash when computer does not crash]]></title><description><![CDATA[<p>Hi all,<br />I would like to set up an Isadora file to automatically re-open when Isadora crashes, but the computer does not crash (on a mac). I saw this post from 2012:    <a href="https://community.troikatronix.com/topic/305/auto-reopen-on-crash">https://community.troikatronix...</a><br />Is this still the best way to do it with Isadora 4 and Sequoia?<br />Thank you!</p>]]></description><link>https://community.troikatronix.com/topic/9137/answered-auto-re-open-isadora-on-crash-when-computer-does-not-crash</link><generator>RSS for Node</generator><lastBuildDate>Sun, 08 Mar 2026 00:26:32 GMT</lastBuildDate><atom:link href="https://community.troikatronix.com/topic/9137.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 09 Feb 2025 16:57:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [ANSWERED] auto re-open Isadora on crash when computer does not crash on Tue, 11 Feb 2025 13:41:14 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://community.troikatronix.com/uid/3215">@postl</a></p><p>I just turned this into an Add-On: <a href="https://troikatronix.com/add-ons/auto-re-launch-isadora-macos-applescript-for-installations/" target="_blank">https://troikatronix.com/add-ons/auto-re-launch-isadora-macos-applescript-for-installations/</a></p><p>It's basically the exact same as what I have here but I also provided the link to my <a href="https://docs.google.com/document/d/15erS4vJ0VIkOfA9AaCNfX9v48A3aJ15189RcTFDblhM/edit?usp=sharing" target="_blank">macOS Isadora Production Computer Setup Guide</a></p>]]></description><link>https://community.troikatronix.com/post/55818</link><guid isPermaLink="true">https://community.troikatronix.com/post/55818</guid><dc:creator><![CDATA[Woland]]></dc:creator><pubDate>Tue, 11 Feb 2025 13:41:14 GMT</pubDate></item><item><title><![CDATA[Reply to [ANSWERED] auto re-open Isadora on crash when computer does not crash on Tue, 11 Feb 2025 13:36:19 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://community.troikatronix.com/uid/1435">@woland</a></p><p>Works! Thank you again.</p>]]></description><link>https://community.troikatronix.com/post/55817</link><guid isPermaLink="true">https://community.troikatronix.com/post/55817</guid><dc:creator><![CDATA[postl]]></dc:creator><pubDate>Tue, 11 Feb 2025 13:36:19 GMT</pubDate></item><item><title><![CDATA[Reply to [ANSWERED] auto re-open Isadora on crash when computer does not crash on Tue, 11 Feb 2025 12:49:21 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://community.troikatronix.com/uid/1435">@woland</a></p><p>Thank you! I will give this a try. Much appreciated!</p>]]></description><link>https://community.troikatronix.com/post/55813</link><guid isPermaLink="true">https://community.troikatronix.com/post/55813</guid><dc:creator><![CDATA[postl]]></dc:creator><pubDate>Tue, 11 Feb 2025 12:49:21 GMT</pubDate></item><item><title><![CDATA[Reply to [ANSWERED] auto re-open Isadora on crash when computer does not crash on Tue, 11 Feb 2025 13:33:14 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://community.troikatronix.com/uid/3215">@postl</a></p>
<p>Yeah, basically. Here's a slightly different version that lets you set the application name while making the restart application yourself (in case you edit the name of the application to include the version name, or if you're using "Isadora USB Key" instead of "Isadora"):</p>
<hr />
<p></p>
<p><strong>Step 1: Create the AppleScript</strong></p>
<ol><li>Open Script Editor (⌘ + Space → Type "Script Editor" → Enter).</li><li>Click File &gt; New.</li><li>Copy and paste this AppleScript:<pre>
property appName : "Isadora" -- Set the application name here
on idle
    tell application "System Events"
        set isRunning to (count of (every process whose name is appName)) &gt; 0
    end tell
    if isRunning is false then
        tell application appName to activate
    end if
    return 5 -- Check every 5 seconds
end idle
</pre>
</li><li>Click File &gt; Save.<ul><li>Choose a name (e.g., Re-Open Isadora.app).</li><li>Set File Format to Application.</li><li>Enable Stay open after run handler.</li><li>Save it to your Applications folder (or another preferred location).</li></ul></li></ol>
<hr />
<p><strong>Step 2: Grant Accessibility &amp; Automation Permissions</strong></p>
<p><strong>2A. Grant Accessibility Permissions</strong><br /></p>
<ol><li>Open System Settings.</li><li>Go to Privacy &amp; Security &gt; Accessibility.</li><li>Click + (Add).</li><li>Navigate to where you saved your script application (Re-Open Isadora.app).</li><li>Select it and click Open.</li><li>Make sure the toggle next to it is ON.</li></ol>
<p><strong>2B. Grant Automation Permissions</strong></p>
<ol><li>Run the script once (double-click the .app file).</li><li>macOS will prompt you to grant permissions to "System Events".</li><li>Click OK.</li><li>If the permission prompt does not appear:<ul><li>Open System Settings &gt; Privacy &amp; Security &gt; Automation.</li><li>Find "Re-Open Isadora" in the list.</li><li>Ensure it has permission to control System Events.</li></ul></li></ol>
<hr />
<p><strong>Step 3: Set the Script to Launch at Login</strong></p>
<p>To have the script automatically start when you log in:</p>
<ol><li>Open System Settings.</li><li>Go to General &gt; Login Items.</li><li>Click the + (Add) button.</li><li>Navigate to the location where you saved Re-Open Isadora.app.</li><li>Select it and click Open.</li><li>Ensure the toggle next to it is ON.</li></ol>
<hr />
<p><strong>Step 4: Test &amp; Verify</strong></p>
<ol><li>Quit Isadora if it is running.</li><li>Run Re-Open Isadora.app manually to check if it starts Isadora.</li><li>Close Isadora again—within 5 seconds, it should automatically reopen.</li><li>Restart your Mac to confirm it launches at login.</li></ol>
<p></p>]]></description><link>https://community.troikatronix.com/post/55801</link><guid isPermaLink="true">https://community.troikatronix.com/post/55801</guid><dc:creator><![CDATA[Woland]]></dc:creator><pubDate>Tue, 11 Feb 2025 13:33:14 GMT</pubDate></item></channel></rss>