Skip to main content
Inspiring
January 9, 2012
Answered

precomposed icon?

  • January 9, 2012
  • 1 reply
  • 889 views

you know, the one without that default gloss...

if you making a web app it is pretty simple:

     <link rel="apple-touch-icon-precomposed" href="/custom_icon.png"/>

but what about flash?

This topic has been closed for replies.
Correct answer

Wherever you keep your working flash file once you publish it an XML file will apear, open it, find the <iPhone> line and paste the below code.

   <iPhone>

        <InfoAdditions>

     

      <![CDATA[<key>UIDeviceFamily</key><array><string>1</string><string>2</string></array><key>UIPrerenderedIcon</key><true/>]]>

    </InfoAdditions>

        <requestedDisplayResolution>high</requestedDisplayResolution>

  </iPhone>

The main part of that is <key>UIPrerenderedIcon</key><true/> I am just putting it all there so you can just go from your current <iPhone> tag to </iPhone> and get the desired results.

Key note: When you publish after adding the above code do it through File>>Publish not from under the Application Settings that option wipes out your XML and replaces it with all default values that are set outside of flash.

1 reply

Correct answer
January 10, 2012

Wherever you keep your working flash file once you publish it an XML file will apear, open it, find the <iPhone> line and paste the below code.

   <iPhone>

        <InfoAdditions>

     

      <![CDATA[<key>UIDeviceFamily</key><array><string>1</string><string>2</string></array><key>UIPrerenderedIcon</key><true/>]]>

    </InfoAdditions>

        <requestedDisplayResolution>high</requestedDisplayResolution>

  </iPhone>

The main part of that is <key>UIPrerenderedIcon</key><true/> I am just putting it all there so you can just go from your current <iPhone> tag to </iPhone> and get the desired results.

Key note: When you publish after adding the above code do it through File>>Publish not from under the Application Settings that option wipes out your XML and replaces it with all default values that are set outside of flash.

igregurecAuthor
Inspiring
January 10, 2012

thank you for your answer and helpfull advice about publishing - now I'm sure what leads to "Error 103: application.version is an unexpected element/attribute"