The XML parser is trying to expand &exc into an XML entity - since & is the signifier for an XML entity.
Instead of &, use & (which is the entity that represents a & sign). Try: <topic label="Adobe AIR Marketplace" data=" http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=24&loc=en_us" /> Ian On Tue, Mar 25, 2008 at 5:12 PM, eric e. dolecki <[EMAIL PROTECTED]> wrote: > I have this bit of code in my AIR app: > > <mx:Model id="myTopics"> > <topics> > <topic label="AS3 Reference" data=" > http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/" /> > <topic label="Adobe AIR Marketplace" data=" > > http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=24&loc=en_us" > /> > <topic label="Flex 3.0 Reference" data=" > http://livedocs.adobe.com/flex/3/langref/index.html"/> > <topic label="Getting started with Flex 3" data=" > http://livedocs.adobe.com/flex/3/html/index.html"/> > <topic label="Kirupa AS3 Forums" data=" > http://www.kirupa.com/forum/forumdisplay.php?f=141"/> > <topic label="ericd.net blog" data="http://www.ericd.net/eed.php > "/> > </topics> > </mx:Model> > > I get this error: > > The reference to entity "exc" must end with the ';' delimiter. > > Its a string, so is this a compiler bug? > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

