I'm using actionscript to access all my sounds, and for the properties in each one I have the linkage set to 'export for actionscript.' Before, I had all of them set to 'export on first frame,' and they worked. I unchecked this option for all the sounds, and now they don't play. I even establish them in the beginning of my movie, with code like:
mysound = new Sound();
mysound.attachSound("thesound");
Then I play it with the "start" command. Is there some extra thing I need to do with my preloader or some extra command I need to add for the sounds to play using actionscript if I don't check 'load on first frame' in 'linkage?' Also, I do have a working preloader.