sandersnake
%Europe/Berlin %301 %2007, 08:13
Ik ben inmiddels aan de Flex studie begonnen ("Adobe Flex 2 - Training from the Source") en stuit op het volgende probleem.
Mijn trace statements worden niet getoond in de Console view bij het debuggen.
Het moet echt iets heel simpels zijn lijkt mij but i don't see it...
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="prodHandler(groceryInventory)">
<mx:Model id="groceryInventory" source="assets/inventory.xml"/>
<mx:Script>
<![CDATA[
private function prodHandler(theItems:Object):void
{
trace(theItems.prodName);
trace(theItems.cost);
}
]]>
</mx:Script>
Mijn trace statements worden niet getoond in de Console view bij het debuggen.
Het moet echt iets heel simpels zijn lijkt mij but i don't see it...
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="prodHandler(groceryInventory)">
<mx:Model id="groceryInventory" source="assets/inventory.xml"/>
<mx:Script>
<![CDATA[
private function prodHandler(theItems:Object):void
{
trace(theItems.prodName);
trace(theItems.cost);
}
]]>
</mx:Script>