2011-10-24 40 views

回答

3

在src文件夾的根目錄中,有一個相應的xml文件,以應用程序的元信息定義的「-app.xml」結尾處的應用程序命名。更新名稱屬性(並確保檢查文件名和ID)。

<application xmlns="http://ns.adobe.com/air/application/2.6"> 

<!-- Adobe AIR Application Descriptor File Template. --> 

    <!-- A universally unique application identifier. --> 
    <id>com.myDomain.myName</id> 

    <!-- Used as the filename for the application. Required. --> 
    <filename>myFilename</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>myName</name> 
+0

什麼/在哪裏? – jameslcs

+0

與您的應用程序在相同的路徑。在你的項目中,有一個「src」文件夾,xml將在那裏。如果你的應用名爲「main.as」,那麼你的描述文件將是「main-app.xml」。 –

+0

感謝您的幫助 – jameslcs