﻿<?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_Stop-dialog" category="Movieclip" name="Ansteuern und Anhalten 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_Stop-dialog" title="Ansteuern und Anhalten bei Bild oder Bezeichnung" buttons="accept, cancel">
			<vbox>
				<label value="Wählen Sie den Movieclip, dessen Wiedergabe Sie anhalten möchten:               "/> 
			</vbox>
			<grid>
				<rows>
					<row align="center">
						<targetlist id="target" tabindex="1" class="movieclip"/> 
					</row>
				</rows>
				<label value=""/>
				<label value="Geben Sie die Bildnummer oder die Bildbezeichnung ein, "/> 
				<label value="an der die Wiedergabe des Movieclips angehalten werden soll:"/>
				<rows>
					<row align="center">
						<textbox literal="true" id="frame" tabindex="2" required="true" requiredname="Bild"/> 
					</row>
				</rows>
			</grid> 
		</dialog>
		<actionscript>
<![CDATA[
	//Movieclip GotoAndStop Behavior
	$target$.gotoAndStop($frame$);
	//End Behavior
]]>
		</actionscript>
	</behavior_definition>
</flash_behavior>