Setting the Browser Window Page Title in Flex

Here’s a real simple quick note that if you using the SWF Object Flex template and want to set the browser page title using Flex then change the below value in index.template.html:

1
<title>${application}</title>

to

1
<title>${title}</title>

And obviously in your mxml:

1
mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" pageTitle="Newtriks"

Comments