On Oct 12, 2013 5:54 PM, "Justin Mclean" <jus...@classsoftware.com> wrote: > > Hi, > > > I always wondered about this. Dont we need to change the swf-version as > > well when we make these kind of changes? > > It handled in several places. > > It part of flex-config.xml and the main build.xml. > > <target name="flex-config" depends="playerglobal-setswfversion" description="Copy the flex config template to flex-config.xml and inject version numbers"> > <copy file="${basedir}/flex-config-template.xml" tofile="${basedir}/flex-config.xml" overwrite="true"> > <filterset> > <filter token="playerversion" value="${playerglobal.version}"/> > <filter token="swfversion" value="${playerglobal.swfversion}"/> > <filter token="locale" value="${locale}"/> > </filterset> > </copy> > </target> > > <condition property="playerglobal.swfversion" value="22"> > <equals arg1="${playerglobal.version}" arg2="11.9" /> > </condition>
But we are still downloading FP 11.1 in the bat file. AIR 3.9 and FP 11.1 require different swf-versions. > > The ide/addAIRToSDK.sh and ide/setFlashPlayerVersion.sh scripts also set it. > > But I think you right for the .bat file it's copying the air-config.xml file out of the template dir which doesn't have the correct swf version set. > > Thanks, > Justin >