(I know it's dying technology, but I'm still working in Flex)
The Flex MXML format is xml except for the section delimited by
<!-- XML format here -->
<mx:Script>
<![CDATA[
// ActionScript here
]]>
</mx:Script>
<!-- XML format here -->
One solution is to run a converter that extracts the ActionScript from inside this element. Unfortunately, this would prevent comparing the XML-format part of the file unless a converter could create two files.
It would also prevent editing and copying lines to the ActionScript (unless a post-comparison re-integrator add-in was possible).
Any ideas?
The Flex MXML format is xml except for the section delimited by
<!-- XML format here -->
<mx:Script>
<![CDATA[
// ActionScript here
]]>
</mx:Script>
<!-- XML format here -->
One solution is to run a converter that extracts the ActionScript from inside this element. Unfortunately, this would prevent comparing the XML-format part of the file unless a converter could create two files.
It would also prevent editing and copying lines to the ActionScript (unless a post-comparison re-integrator add-in was possible).
Any ideas?
Comment