﻿<?xml version="1.0"?>

<!-- **************************************************************************** -->
<!-- Copyright 2003 Macromedia, Inc. All Rights Reserved.                         -->
<!-- The following is Sample Code and is subject to all restrictions on           -->
<!-- such code as contained in the End User License Agreement accompanying        -->
<!-- this product.                                                                -->
<!-- **************************************************************************** -->

<flash_behavior version="1.0">

<!--Below is where and how we define the behavior and its parameters-->

	<behavior_definition dialogID="Stop_All_Sounds-dialog" category="Sound" name="Alle Sounds stoppen">
		<!--class="frame, movieclip, button">-->
		
		<properties>
			<property id="dummy"/> 
		</properties>
	
		<!--The dialog window is tied to the controls below by its id-->
		<!--This controls generate the dialog using the XML to UI functionality-->
		
		<dialog id="Stop_All_Sounds-dialog" title="Alle Sounds stoppen" buttons="accept, cancel">
			<vbox>
				<hbox>
					<label value="Dieses Verhalten stoppt alle Sounds, die derzeit abgespielt werden."/> 
				</hbox>
			</vbox>  
		</dialog>
		<actionscript>
		
		<!-- Inside the CDATA section is where you place the Actionscript to be displayed in the AS panel-->
		
<![CDATA[
	//stopAllSounds Behavior
	stopAllSounds();
]]>
		</actionscript>
	</behavior_definition>
</flash_behavior>