﻿<?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="SelectScreenDialog" category="Bildschirm" screenModeOnly="true" name="Bildschirm ausblenden">

  <properties>
    <property id="TARGET" default="this._parent"/> 
  </properties>
  
  <dialog id="SelectScreenDialog" title="Bildschirm auswählen" buttons="accept, cancel">
    <vbox>
        <label value="Wählen Sie einen Bildschirm aus:" control="TARGET"/> 
        <targetlist id="TARGET" class="screen" required="true" requiredname="ZIEL"/>
    </vbox> 
  </dialog>
  
  <actionscript>
    <![CDATA[
      // Hide Screen behavior
      if(($TARGET$ != undefined) && ($TARGET$ != null))
      {
        $TARGET$.setVisible(false);
      }
      // End Hide Screen behavior
    ]]>
  </actionscript>
  
</behavior_definition>
</flash_behavior>
