Embedded .wav files

Is there a way to extract or view an embedded .wav file in a window?

how would you view a sound file? xd
Do you want it to display the “sound waves” like a graph?

vision has an sound player compoennt tho

Under the assumption you have a Sound Player component on the window and you want to extract the data it contains, you can (in scripting) ask for referenceToSoundPlayer.getSoundData(), which will return a byte array. You can then pair that byte array with a system function (e.g. system.file.writeFile) to write it back out to disk.

Thanks PGriffith that’s what I was needing.