iTunes: Get Current AirPlay Device's name

Hi guys,
I try to figure out which AirPlay Device is currently used by iTunes, meaning I just need the script to return the name of the AirPlay device.
Here is what I started with:

tell application "iTunes"
	set apDevice to (get current AirPlay devices)
end tell

This returns me the ID of the AirPlay Device, which is nice but quite useless.

Si I tried get name giving

tell application "iTunes"
   set currentDevices to get name of current AirPlay devices
   return currentDevices
end tell

Which returns error "iTunes got an error: Can’t get name of current AirPlay devices." number -1728 from name of current AirPlay devices.
Funny thing, if I delete the selected in front of AirPlay devices, meaning

tell application "iTunes"
	set currentDevices to get name of AirPlay devices
	return currentDevices
end tell

I actually get a list of all my AirPlay devices.

How can I display the name of my f*cking currently used AirPlay device? :sob: Thank you all