본문 바로가기

OM

에어 디스크립터 파일

<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/1.0">

<!-- Adobe AIR Application Descriptor File Template.

    Specifies parameters for identifying, installing, and launching AIR applications.
    See http://www.adobe.com/go/air_1.0_application_descriptor for complete documentation.

    xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/1.0
            The last segment of the namespace specifies the version
            of the AIR runtime required for this application to run.
           
    minimumPatchLevel - The minimum patch level of the AIR runtime required to run
            the application. Optional.
-->

    <!-- The application identifier string, unique to this application. Required. -->
    <!-- 어플리케이션 ID(필수) -->
    <id>com.example.HelloWorld</id>

    <!-- Used as the filename for the application. Required. -->
    <!-- 파일이름(필수) -->
    <filename>Hello World</filename>

    <!-- The name that is displayed in the AIR application installer. Optional. -->
    <!-- 설치할 때 표시되는 이름(제어판 추가삭제에도 나타남) -->
    <name>Example Co. AIR Hello World</name>

    <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
    <!-- 어플리케이션 버젼(필수) -->
    <version>2.0</version>

    <!-- Description, displayed in the AIR application installer. Optional. -->
    <!-- 설명(어플리케이션 설치 시 나타남) -->
    <description>
        The Hello World sample file from the Adobe AIR documentation.
    </description>

    <!-- Copyright information. Optional -->
    <!-- 카피라이트 정보 -->
    <copyright>Copyright (c) 2006 Example Co.</copyright>

    <!-- Settings for the application's initial window. Required. -->
    <initialWindow>
        <!-- The main SWF or HTML file of the application. Required. -->
        <!-- Note: In Flex Builder, the SWF reference is set automatically. -->
        <!-- 실제 실행될 swf 또는 html 파일 -->
        <content>[This value will be overwritten by Flex Builder in the output app.xml]</content>
       
        <!-- The title of the main window. Optional. -->
        <!-- 메인 윈도우 타이틀 -->
        <title>Hello World</title>

        <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
        <!-- 사용할 윈도우크롬(기본값 : standard) -->
        <systemChrome>none</systemChrome>

        <!-- Whether the window is transparent. Only applicable when systemChrome is false. Optional. Default false. -->
        <!-- 윈도우의 투명여부(systemChrome이 none일 경우에만 동작) -->
        <transparent>true</transparent>

        <!-- Whether the window is initially visible. Optional. Default false. -->
        <!-- 시작시 윈도우의 가시여부 설정 -->
        <visible>true</visible>

        <!-- Whether the user can minimize the window. Optional. Default true. -->
        <!-- 어플리케이션 최소와 기능 설정 -->
        <minimizable>true</minimizable>

        <!-- Whether the user can maximize the window. Optional. Default true. -->
        <!-- 어플리케이션 최대화 기능 설정 -->
        <maximizable>true</maximizable>

        <!-- Whether the user can resize the window. Optional. Default true. -->
        <!-- 어플리케이션 크기조절 가능여부 설정 -->
        <resizable>true</resizable>

        <!-- The window's initial width. Optional. -->
        <!-- 윈도우의 초기 너비 -->
        <width>640</width>

        <!-- The window's initial height. Optional. -->
        <!-- 윈도우의 초기 높이 -->
        <height>480</height>

        <!-- The window's initial x position. Optional. -->
        <!-- 윈도우의 x위치 -->
        <x>100</x>

        <!-- The window's initial y position. Optional. -->
        <!-- 윈도우의 y위치 -->
        <y>100</y>

        <!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
        <!-- 윈도우의 최소 사이즈 정의 -->
        <minSize>400 200</minSize>

        <!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
        <!-- 윈도우의 최대 사이즈 정의 -->
        <maxSize>1600 800</maxSize>
    </initialWindow>

    <!-- The subpath of the standard default installation location to use. Optional. -->
    <!-- 어플리케이션을 설치할 경로 -->
    <installFolder>Example Co/Hello World</installFolder>

    <!-- The subpath of the Windows Start/Programs menu to use. Optional. -->
    <!-- 어플리케이션이 프로그램 폴더에 위치할 경로 -->
    <programMenuFolder>Example Co</programMenuFolder>

    <!-- The icon the system uses for the application. For at least one resolution,
         specify the path to a PNG file included in the AIR package. Optional. -->
    <!-- 어플리케이션에 사용되는 아이콘 파일(PNG 포맷) -->
    <icon>
        <image16x16>icons/smallIcon.png</image16x16>
        <image32x32>icons/mediumIcon.png</image32x32>
        <image48x48>icons/bigIcon.png</image48x48>
        <image128x128>icons/biggestIcon.png</image128x128>
    </icon>

    <!-- Whether the application handles the update when a user double-clicks an update version
    of the AIR file (true), or the default AIR application installer handles the update (false).
    Optional. Default false. -->
    <!-- 업데이트 할 때 사용자 정의 UI를 사용할지 여부 -->
    <customUpdateUI>true</customUpdateUI>
   
    <!-- Whether the application can be launched when the user clicks a link in a web browser.
    Optional. Default false. -->
    <!-- 브라우저에서 어플리케이션을 실행할 수 있는지 여부 -->
    <allowBrowserInvocation>false</allowBrowserInvocation>

    <!-- Listing of file types for which the application can register. Optional. -->
    <!-- 어플리케이션에 연결된 파일 타입 -->
    <fileTypes>

        <!-- Defines one file type. Optional. -->
        <fileType>

            <!-- The name that the system displays for the registered file type. Required. -->
            <!-- 이름 -->
            <name>adobe.VideoFile</name>

            <!-- The extension to register. Required. -->
            <!-- 확장자(필수) -->
            <extension>avf</extension>
           
            <!-- The description of the file type. Optional. -->
            <!-- 설명 -->
            <description>Adobe Video File</description>
           
            <!-- The MIME type. Optional. -->
            <!-- The MIME 타입 -->
            <contentType>application/vnd.adobe.video-file</contentType>
           
            <!-- The icon to display for the file type. Optional. -->
            <!-- 파일에 사용되는 아이콘 파일(PNG 포맷) -->
            <icon>
                <image16x16>icons/avfIcon_16.png</image16x16>
                <image32x32>icons/avfIcon_32.png</image32x32>
                <image48x48>icons/avfIcon_48.png</image48x48>
                <image128x128>icons/avfIcon_128.png</image128x128>
            </icon>
           
        </fileType>
    </fileTypes>

</application>