Hi there,

I have a well matured FLEX 3.5 Application build in 4.2, but still solidly in mx! a main audio set up on the main / intro page and within modules were I wanted to use another, but very basic & general mp3 audio player.


First time around I have the main sound disabled!
When leaving the index page and selecting the module the main player start up by itself yet still switches off and does everything as requested when I select the second player in the module?

Anyway, when I run the App. and I have the main sound enabled, and I select the module everything is fine yet the second player plays as well as the main without stopping the main player!

I did connect to the maim player in the module like this just as it was in it own set up! but I tried many different settings but without luck.

Any help would be greatly appreciated! regards aktell


Code:
	xmlns:local="*"

************
				
				<mx:Script>
					<![CDATA[
						
						import audioManager;
						public var aMusic:audioManager = new audioManager;

						private function playONE():void {
							
							myChannelONE= soundONE.play();
							
							aMusic.onPause();
						}

						private function stopONE():void {
							
							pausePosONE = myChannelONE.position;
							myChannelONE.stop();
							
							aMusic.onPlay();
						}
					]]>
				</mx:Script>