dear friends
I have a simple AIR app in Flex Builder 3.0 (Moxie).
I have this codes in my _app.xml page for logo icon:
<icon>
<image16x16>
img/logo_16.png</image16x16>
<image32x32>img/logo_32.png</image32x32>
<image48x48>img/logo_48.png</image48x48>
<image128x128>img/logo_128.png</image128x128>
</icon>
and I have this path in my project : img/logo_16.png and etc.
but it does not work.
how can I fix it?
thanks
It's very easy to miss the comments around this definition. Check if you
don't have this :
<!--
<icon>
<image16x16>img/logo_16.png</image16x16>
<image32x32>img/logo_32.png</image32x32>
<image48x48>img/logo_48.png</image48x48>
<image128x128>img/logo_128.png</image128x128>
</icon>
-->
and remove it.
Seb.