el codigo que utilizo es este.
Código:
_root.voz_intro.voz = new Sound(); _root.voz_intro.voz.attachSound("vesp"); trace(_root.voz_intro.voz.duration); _root.voz_intro.voz.start(4,1) _root.onEnterFrame= function() { trace(_root.voz_intro.voz.position); if (_root.voz_intro.voz.position > 26000) { _root.voz_intro.voz.stop("vesp"); } }