Danny Beckett
Danny Beckett

Reputation: 20776

How to style the installer?

I'm developing an AIR app for a client, and they've had a gfx designer edit some graphics for the app.

He's also asked that the installer be changed from this:

To this:

(ignore the XP window style)

Is that possible? I haven't found anything relevant from Googling or searching SO.

Upvotes: 1

Views: 144

Answers (1)

ndm
ndm

Reputation: 60463

That's not possible, the installation of .air packages is handled by the AIR runtime, you cannot change its appearance. Native packages might be standalone installers themselfs, not 100% sure, but their style also cannot be changed.

If you want custom styles, then you have to package your app as a captive runtime application and create your very own installer for it.

http://help.adobe.com/en_US/air/build/WSfffb011ac560372f709e16db131e43659b9-8000.html
http://www.adobe.com/devnet/air/articles/customize-setup-for-AIR-app-with-captive-runtime.html

Upvotes: 2

Related Questions