Perchè se setto il volume al suono "sp" a 100 anche il suono "ai" va a 100 e non a 50 come nello script? sbaglio?
--
sp = new Sound();
sp.attachSound("speak");
sp.start(0, 1);
sp.setVolume(100);
ai = new Sound();
ai.attachSound("speak");
ai.start(0, 1);
ai.setVolume(50);
--