a. Nuovo MC che parte contemporaneamente all'oggetto Sound.

b. Frame 1:

codice:
var maxvolume = 100;
c. Frame 2:

codice:
var punto = _root.mySound.duration - 3000;

if (_root.mySound.position >= punto ) {
	
maxvolume = maxvolume - 3;
   	
    if (maxvolume < 0){
        maxvolume = 0;
        _root.mySound.stop();
	   
    } 

_root.mySound.setVolume(maxvolume);
	
	}
d. Frame 3:

codice:
gotoAndPlay(2);
NB= 3000 sono milli secondi. Quindi 3 secondi.

Spero possa essere utile.. Credo lo sarà visto che in rete e nel forum si trova poco riguardo questo problema.

Un Grazie speciale va a KillerWorm che mi ha accompagnato lungo il tragitto