Jul
07
A few days ago I was trying to use the FDS AJAX Bridge to push some messages in an AJAX grid. So I created a Flex + WTP + BlazeDS project and went to change the default Application from the default MXML file to my FDMSBridge.as (The 1×1 pixel SWF). Guess what? You can’t add AS files, only MXML ones
This might be a little bug, but I found a workaround. I manually edited .actionScriptProperties file and in the <application> section added the FDMSBridge.as:
<?xml version=”1.0″ encoding=”UTF-8″?>
<actionScriptProperties mainApplicationPath=”testBlaze.mxml” version=”3″>
<compiler additionalCompilerArguments=”-services “C:/work/wksp/samples/testBlaze/WebContent/WEB-INF/flex/services-config.xml” -locale en_US” copyDependentFiles=”true” enableModuleDebug=”true” generateAccessible=”false” htmlExpressInstall=”true” htmlGenerate=”true” htmlHistoryManagement=”true” htmlPlayerVersion=”9.0.28″ htmlPlayerVersionCheck=”true” outputFolderPath=”bin-debug” rootURL=”http://localhost:8080/testBlaze” sourceFolderPath=”flex_src” strict=”true” useApolloConfig=”false” verifyDigests=”true” warn=”true”>
<compilerSourcePath/>
<libraryPath defaultLinkType=”1″>
<libraryPathEntry kind=”4″ path=”"/>
<libraryPathEntry kind=”1″ linkType=”1″ path=”flex_libs”/>
</libraryPath>
<sourceAttachmentPath/>
</compiler>
<applications>
<application path=”FDMSBridge.as”/>
<application path=”testBlaze.mxml”/>
</applications>
<modules/>
<buildCSSFiles/>
</actionScriptProperties>
Now the FDMSBridge.as should be compiled as a normal Flex application: