﻿<?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="Clip filmato" name="Vai e interrompi a fotogramma o etichetta">
		<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="Vai e interrompi a fotogramma o etichetta" buttons="accept, cancel">
			<vbox>
				<label value="Scegliete il clip filmato che si desidera:                                            "/> 
			</vbox>
			<grid>
				<rows>
					<row align="center">
						<targetlist id="target" tabindex="1" class="movieclip"/> 
					</row>
				</rows>
				<label value=""/>
				<label value="Immettete il numero o l'etichetta del fotogramma "/> 
				<label value="in cui deve essere interrotta la riproduzione del clip filmato:"/>
				<rows>
					<row align="center">
						<textbox literal="true" id="frame" tabindex="2" required="true" requiredname="fotogramma"/> 
					</row>
				</rows>
			</grid> 
		</dialog>
		<actionscript>
<![CDATA[
	//Movieclip GotoAndStop Behavior
	$target$.gotoAndStop($frame$);
	//End Behavior
]]>
		</actionscript>
	</behavior_definition>
</flash_behavior>