Hi
I don't have any idea about how Sound library works. I did the following:
1) In Squeak 4.3 one click:
FLSerializer serialize: SampledSound soundLibrary toFileNamed: 'soundLibrary.fuel'.
2) In Pharo 2.0:
� Gofer it
� � � � package: 'ConfigurationOfPharoSound';
� � � � load.
� � (Smalltalk at: #ConfigurationOfPharoSound) project lastVersion load.
SampledSound assimilateSoundsFrom: (FLMaterializer materializeFromFileNamed: 'soundLibrary.fuel').
SampledSound soundNames. "---> #('click' 'laugh' 'silence' 'chirp' 'splash' 'scratch' 'coyote' 'chomp' 'clink' 'scritch' 'meow' 'peaks' 'horn' 'camera' 'croak' 'warble' 'motor' 'scrape')."
SampledSound soundNames do: [ :each |
SampledSound playSoundNamed: each ].
---> so it seemed to work, but I can't hear anything. I attach the fuel file, so to reproduce you can just put it in the image directory and evaluate my code above.
Best,
Mart�n