﻿<?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="GotoWebPage-dialog" category="Web" name="Gehe zu Webseite">
<properties>
<property id="URL" default="http://www.adobe.com/de"/> 
<property id="targetWindow" default='"_self"'/>
</properties>
   <dialog id="GotoWebPage-dialog" title="Gehe zu URL" buttons="accept, cancel">
      <vbox>
 		<hbox>
		   <label value="URL:" control="URL"/> 
		   <textbox literal="true" required="true" size="40" id="URL" requiredname="URL"/>
		</hbox> 
        <hbox>
		   <label value="Öffnen in:" control="targetWindow"/> 
		   <menulist literal="true" id="targetWindow">
		   <menupopup>
			  <menuitem label='"_self"'/>                     
			  <menuitem label='"_parent"'/>
			  <menuitem label='"_blank"'/> 
			  <menuitem label='"_top"'/>
		   </menupopup>
		   </menulist>
		</hbox>
	 </vbox> 
   </dialog>
<actionscript>
<![CDATA[
	//Goto Webpage Behavior
	getURL($URL$,$targetWindow$);
	//End Behavior
]]>
</actionscript>
</behavior_definition>
</flash_behavior>
