티스토리 뷰

Language/Flex

[ Flex AIR ] app.xml 초기 설정

MiniNeko 2015. 11. 29. 04:31

<?xml version="1.0" encoding="utf-8" standalone="no"?>
< application xmlns="http://ns.adobe.com/air/application/1.5">
< !-- Adobe AIR Application Descriptor File Template.
 Specifies parameters for identifying, installing, and launching AIR applications.
 xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/1.5
   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(필수 "_" 첨자가 들어가면 오류 발생 - ebookLaunch 명과 동일하게 설정) -->
 <!-- 한글로 하면 실행이 안됨 띄어쓰기 때문일 수 있음 ← 확인하기 귀찮음 -->
 <id>AirJokbo</id>
 <!-- Used as the filename for the application. Required. -->
 <!-- 파일이름 (필수 - 프로젝트 명) // 한글로 설정 아래에 name 와 동일하게 설정 -->
 <filename>AirJokbo</filename>
 <!-- The name that is displayed in the AIR application installer. 
      May have multiple values for each language. See samples or xsd schema file. Optional. -->
 <!-- 설치할때 표시되는 이름(제어판 추가삭제에도 나타남) -->
 <name>AirJokbo</name>
 <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
 <!-- 어플리게이션 버젼(필수) -->
 <version>1.0</version>
 <!-- Description, displayed in the AIR application installer.
      May have multiple values for each language. See samples or xsd schema file. Optional. -->
 <!-- 설명(애플리게이션 설치시 나타남) -->
 <!-- <description></description> -->
 <!-- Copyright information. Optional -->
 <!-- 카피라이트 정보 -->
 <copyright>Copyright 2007-2009 © DTI Corporation All Rights Reserved.</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>AirJokbo.swf</content> -->
  <content>[This value will be overwritten by Flex Builder in the output app.xml]</content>
  
  <!-- The title of the main window. Optional. -->
  <!-- 메인 윈도우 타이틀 -->
  <!-- <title></title> -->
  <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
  <!-- 사용할 윈도우 크롬("standard" 또는 "none") -->
  <!-- 기본값 standard -->
  <!-- <systemChrome></systemChrome> -->
  <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
  <!-- 윈도우의 투명여부(systemChrome이 false일 경우만 동작) -->
  <!-- <transparent></transparent> -->
  <!-- Whether the window is initially visible. Optional. Default false. -->
  <!-- 시작시 윈도우의 가시여부 설정 -->
  <visible>false</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></width> -->
  <!-- The window`s initial height. Optional. -->
  <!-- 애플리케이션 초기 높이 -->
  <!-- <height></height> -->
  <!-- The window`s initial x position. Optional. -->
  <!-- 애플리케이션 초기 x 좌표 -->
  <!-- <x></x> -->
  <!-- The window`s initial y position. Optional. -->
  <!-- 애플리케이션 초기 y 좌표 -->
  <!-- <y></y> -->
  <!-- The window`s minimum size, specified as a width/height pair, such as "400 200". Optional. -->
  <!-- 애플리케이션 최소 사이즈 정의 -->
  <!-- <minSize></minSize> -->
  <!-- The window`s initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
  <!-- 애플리케이션 최대 사이즈 정의 -->
  <!-- <maxSize></maxSize> -->
 </initialWindow>
 <!-- The subpath of the standard default installation location to use. Optional. -->
 <!-- 애플리케이션을 설치할 경로 -->
 <!-- <installFolder></installFolder> -->
 <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
 <!-- 애플리케이션이 프로그램 폴더에 위치할 경로 -->
 <!-- <programMenuFolder></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 포멧) -->
 <!-- <imge16x16>이미지파일경로</imge16x16> -->
 <!-- <icon>
  <image16x16></image16x16>
  <image32x32></image32x32>
  <image48x48></image48x48>
  <image128x128></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></customUpdateUI> -->
 
 <!-- Whether the application can be launched when the user clicks a link in a web browser.
 Optional. Default false. -->
 <!-- 브라우져에서 애플리케이션을 실행할 수 있는 여부 -->
 <!-- <allowBrowserInvocation></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></name> -->
   <!-- The extension to register. Required. -->
   <!-- 확장자 -->
   <!-- <extension></extension> -->
   
   <!-- The description of the file type. Optional. -->
   <!-- 설명 -->
   <!-- <description></description> -->
   
   <!-- The MIME content type. -->
   <!-- The MIME 타입 ??? -->
   <!-- <contentType></contentType> -->
   
   <!-- The icon to display for the file type. Optional. -->
   <!-- 파일에 사용되는 아이콘 파일(PNG 포멧) -->
   <!-- <icon>
    <image16x16></image16x16>
    <image32x32></image32x32>
    <image48x48></image48x48>
    <image128x128></image128x128>
   </icon> -->
   
  <!-- </fileType> -->
 <!-- </fileTypes> -->
< /application> 

Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31