Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
random777 #1
Error when compiling mxml
Hi all,
I'm trying to compile a mxml file and I'm getting the following error:-
C:\flex_sdk_3\bin>mxmlc test.mxml
Loading configuration file C:\flex_sdk_3\frameworks\flex-config.xml
C:\flex_sdk_3\bin\test.mxml(13): col: 718 Error: An invalid XML character
(Unicode: 0x7) was found in the element content of the document.
Any idea how could I resolve this problem?
Thanks in advance.
random777 Guest
-
passing variables from one mxml to anther mxml
Hi i want to know about passing variables from one mxml file to another mxml file both will be different application or i want to call... -
How does on Sharing data between main.mxml and a renderer.mxml
I have a value set in my main mxml file. public var calDate:Date = new Date(); How can I use this value in my renderer mxml file? if... -
About compiling MXML to SWF
Hi all, I want to compile the following files to get SWF file: restaurant.mxml DetailsList.mxml restaurant.css Review.mxml Map.xml -
Can I embed external MXML in another MXML file?
Hi - I'm new to this so please bear with me. I'm trying to do something like you do in JSP's with a JSP include where I can import prewritten code... -
Accessing user_classes when compiling mxml withinColdFusion pages
I am attempting to use mxml within a ColdFusion page and am having an issue where my imported namespaces aren't functioning. I am storing the... -
peterent #2
Re: Error when compiling mxml
Sounds like you have either an ampersand (&), greater-than (>), or less-than
(<) character side of an XML expression. For example:
<mx:Text text="{ alpha < beta ? 'Hello' : 'World'}" />
or
<mx:Text text="Bob & Ray" />
If you do have this, switch to encoded characters such as & < > or use the
XML encode values which I don't know off the top of my header; you'll have to
look them up.
peterent Guest



Reply With Quote

