Airfoil and Indigo 6.0.5
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
Still getting this over and over again:jay (support) wrote:Doesn't matter.
Airfoil Debug runConcurrentThread: Airfoil isn't running
Not seeing anything else in the event log if that is the only place where you thought I would see changes happening.
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
You never told me the results of running the AppleScript I posted...
Re: Airfoil and Indigo 6.0.5
That was the result...
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
So the result of running the script in the Script Editor application was...
Re: Airfoil and Indigo 6.0.5
As I said earlier...
All running the script shows in the event log is the following... which I assume the script is doing nothing.
Airfoil Debug runConcurrentThread: Airfoil isn't running
I'm not sure what other "processes" launching and quitting you were referring to.
All running the script shows in the event log is the following... which I assume the script is doing nothing.
Airfoil Debug runConcurrentThread: Airfoil isn't running
I'm not sure what other "processes" launching and quitting you were referring to.
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
That message is from the plugin, not from the AppleScript. When you execute the script in the Script Editor application it will show the results in the Script Editor window (or show an error) - Indigo isn't even in the loop.
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
Let me explain what I'm trying to determine and maybe what I'm looking for will make more sense. I want to make sure that Airfoil is responding to apple events sent from something else other than the various Indigo components. So if you run that AppleScript from the AppleScript Editor application, the expected result is that it would return a list of available speakers. That's the first test that I'd like you to run - an AppleScript that talks to Airfoil from outside of any Indigo components.
Now, having said that, at least one other user seems to have gotten Airfoil back in a working state by deleting the application completely then reinstalling. So you might give that a try. There appears to be some sandboxing issue with the OS that's sometimes causing apple events (i.e. AppleScripts) to fail between some applications.
Now, having said that, at least one other user seems to have gotten Airfoil back in a working state by deleting the application completely then reinstalling. So you might give that a try. There appears to be some sandboxing issue with the OS that's sometimes causing apple events (i.e. AppleScripts) to fail between some applications.
Re: Airfoil and Indigo 6.0.5
I see. My problem was that I was firing the script from an action within indigo and watching the event log.
Below is the message I receive from the results window of the editor.
Below is the message I receive from the results window of the editor.
Code: Select all
{speaker id "com.rogueamoeba.airfoil.LocalSpeaker" of application "Airfoil", speaker id "7073CBDAEE85" of application "Airfoil", speaker id "A820661225FC" of application "Airfoil", speaker id "001FF303BB86" of application "Airfoil"}- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
OK - that's the expected reply. Next, create an action group in Indigo with an Execute Script action. Paste in the following script and hit the "Run" button.
Anything in the Event Log (ignore any lines that are from the Airfoil Plugin)? Any lines should have the type "Script".
Code: Select all
tell application "Airfoil"
set speakerName to name of first speaker
end tell
tell application "IndigoServer" to log speakerNameRe: Airfoil and Indigo 6.0.5
Results:
Dec 12, 2013 12:11:53 PM
Error script error: around characters 115 to 130
Error script error: File IndigoServer_d wasn’t found. (-43)
Dec 12, 2013 12:11:53 PM
Error script error: around characters 115 to 130
Error script error: File IndigoServer_d wasn’t found. (-43)
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
LOL - sorry, I tested it against a debug build. I edited it above (removed the _d) so copy/paste it again.
Re: Airfoil and Indigo 6.0.5
No worries.
Code: Select all
Script Computer- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: Airfoil and Indigo 6.0.5
Ok. Unfortunately, it basically just means that the appscript library, which is what we use to bridge python to AppleScript, is what's having the issue. Have you tried the suggestion to delete Airfoil completely and reinstall it?
Re: Airfoil and Indigo 6.0.5
I've deleted the airfoil app to the trash. Emptied the trash. Reinstalled airfoil and reset the speaker list from the indigo plugin. The same result is happening. Is there a way to trash the script library as well somehow?