Thursday, April 10, 2008
URLs and Flex
Thursday, April 10, 2008
I ran into this problem a while back myself, and just now someone else ran into the problem too. Let's say you want to use a URL for something (RSS gathering, a simple link out to another location, etc.)
Now when you compile, you'll get an error.
The reference to entity "exc" must end with the ';' delimiter.
Ian Thomas pointed me in the right direction. The XML parser is trying to expand &exc into an XML entity - since & is the signifier for an XML entity.
Change the
&symbols to
&and you'll be good to go.
Comments:
There are currently 0 Comments:

