Hello
I have this problem getting the numbers from a xml to flash because I only getting two-digit and hay need to get like 8 digit numbers and I dont know what happen.
Here is a example of the code:
var mybook:Number = 0;
var mymagazine:Number = 0;
var mycolor:Color = new Color(mccolor);
function loadXML(loaded) {
…
mybook=_root.bookonline;
mymagazine=_root.magazineonline;
if(mybook>mymagazine)
{
mycolor.setRGB(0x462254);
} else
{
mycolor.setRGB(0x45AF23);
}
…
}