我正面临一个非常烦人的问题。我同时提供 16x16 和 32x32 应用程序图标,但初始窗口使用按比例缩小的 32x32 图标,而不是 16x16 图标。
以下是各自的图标图像:
因此,将 16x16 图标用于应用程序图标、Windows 或任何似乎不这样认为的东西是有意义的:
我该如何解决?当应用程序图标的所有其他使用都清晰明了时,除了该死的窗口图标之外,这真的很烦人并且看起来非常不专业。
此错误/错误也出现在任务栏中。
有任何想法吗?
编辑: application.xml
<?xml version="1.0" encoding="utf-8"?>
<application xmlns="http://ns.adobe.com/air/application/3.5">
<id>com.yahrly.PixelTBSLevelEditor</id>
<versionNumber>1.0.0</versionNumber>
<filename>PixelTBS Level Editor</filename>
<name>PixelTBS Level Editor</name>
<copyright>© 2013, YahRly LLC</copyright>
<initialWindow>
<title>PixelTBS Level Editor</title>
<content>PixelTBSLevelEditor.swf</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<minimizable>true</minimizable>
<maximizable>false</maximizable>
<resizable>false</resizable>
</initialWindow>
<installFolder>YahRly</installFolder>
<programMenuFolder>PixelTBS Level Editor</programMenuFolder>
<supportedProfiles>desktop</supportedProfiles>
<icon>
<image16x16>icons/icon16.png</image16x16>
<image32x32>icons/icon32.png</image32x32>
<image48x48>icons/icon48.png</image48x48>
<image128x128>icons/icon128.png</image128x128>
</icon>
<description>Create and customise your own maps for PixelTBS.</description>
</application>
编辑2:我发现其他人有我的问题,但他们也没有回应>>这里