Hello again, Cliff.
Thanks for your detailed explanation of what you’re trying to do. Makes it a lot easier to come up with possible suggestions. 
In a way, this case exemplifies everything I said earlier about the vagaries of UI scripting. You’ve already done a sterling job in identifying the UI elements that you’re after. Nevertheless, I fear that Accessibility Inspector - while normally extremely helpful in these situations - may be innocently leading us up the old garden path on this one. To demonstrate what I mean (and to hopefully offer you a few pointers on UI scripting along the way), let’s explore a few of the issues involved in this approach - before I suggest my preferred alternative.
Firstly, how do we get AirFoil to present the menu that we’re trying to access?
As you’ve already correctly observed, the target button offers a couple of action options: “AXShowMenu” (show menu) and “AXPress” (press - or, more accurately, click). We also know that clicking doesn’t have the desired effect here - so let’s try the alternative, “AXShowMenu”:
tell application "System Events" to tell window "Airfoil" of process "Airfoil" to perform action "AXShowMenu" of button -1
(Note that I referred to the target button by index, button -1, rather than by name, button “iTunes” - since, as you rightly point out, the name is likely to change.)
Hopefully, that should show the menu - and I can leave you to continue from there, right? 
Wrong. 
As you say, Accessibility Inspector tells us that our target button now contains a menu which, in turn, contains a list of menu items - from which we should be able to select our current choice. Fine. But due to what I believe is an unfortunate bug, we simply can’t access that menu. Any attempt to access via scripting (which normally works in other situations) tells us that the button contains no further UI elements (even though we can actually see them on-screen):
tell application "System Events" to tell button -1 of window "Airfoil" of process "Airfoil"
perform action "AXShowMenu"
delay 0.5 (* give the menu time to appear *)
UI elements
end tell
--> {}
The returned empty list simply confirms that any attempt to access the button’s elements (which we know to exist) will fail.
Bummer. 
So what do we do now?
No worries. Given that we know the position of a menu item, we can always resort to a little keystroke subterfuge to access it:
set menu_item to 3 (* position of required app in pop-up menu *)
tell application "System Events" to tell process "Airfoil"
tell window "Airfoil"
tell button -1 to perform action "AXShowMenu"
delay 0.5 (* give the menu time to appear *)
repeat menu_item times
key code 125 (* down arrow *)
end repeat
keystroke return (* confirm choice of menu item *)
end tell
end tell
That should select the required menu item. Great. So now you can take it from there, right? 
Wrong. 
Run that last script a few times and watch what happens to the menu. The order of menu items changes. The most recently selected item is promoted to pole position - while those items that previously came before it move down a slot to accommodate it. And, since we can’t read the menu (because the script can’t access it), we can’t check the latest sequence of menu items within it. So we can’t determine the current position of our target menu item…
(Incidentally, ever read Catch-22?) 
With this approach, the only possible way to select a menu item by name is to iterate through each menu item, select it - and then re-check the button name. For this, you’d need to know in advance the total number of application options available. Way too clunky to consider seriously…
Given the abundance of constraints, caveats and curiosities in all this, you may by now be wondering if it’s really worth pursuing at all. But take heart. There’s usually more than one way to approach such things. And, since Airfoil has its own AppleScript implementation and dictionary, I reckon the best method is to script it directly:
tell application "Airfoil" to set current audio source to application source "VLC"
PS: I see that, while I was typing this, Jacques beat me to my conclusion. (That’ll teach me to embark on long-winded replies.) All the same, I hope you still find the general stuff about UI scripting of some use for other situations…
