﻿<?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">
	<behavior_definition dialogID="Goto_and_Play-dialog" category="Movieclip" name="Ansteuern und Abspielen bei Bild oder Bezeichnung">
		<properties>
			<property id="target" default="this"/> 
			<property id="frame" default="1"/>
		</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="Goto_and_Play-dialog" title="Ansteuern und Abspielen bei Bild oder Bezeichnung" buttons="accept, cancel">
		  <grid>
		    <columns>
			  <column>
				<rows>
				  <row align="center">
				    <vbox>
					  <label value="Wählen Sie den Movieclip, mit dessen Wiedergabe Sie beginnen möchten:               "/> 			
					  <targetlist id="target" tabindex="1" class="movieclip"/>
					</vbox>
				  </row>
				</rows>
			 	<rows>
				  <row align="center">
				    <vbox>
						<label value=""/> 
						<label width="330" value="Geben Sie die Nummer oder die Bezeichnung des Bilds ein, in dem mit dem Abspielen des Movieclips begonnen werden soll.  Geben Sie &quot;1&quot; ein, um am Anfang zu beginnen."/>
					</vbox>
				  </row>
				</rows>
			 	<rows>
				  <row align="center">
				    <vbox>
						<textbox width="40" literal="true" id="frame" tabindex="2" required="true" requiredname="Bild"/> 
					</vbox>
				  </row>
				</rows>
			  </column>
		    </columns>	
		  </grid>
		</dialog>
		<actionscript>
<![CDATA[
	//Movieclip GotoAndPlay Behavior
	$target$.gotoAndPlay($frame$);
	//End Behavior
]]>
		</actionscript>
	</behavior_definition>
</flash_behavior>