【开发棋牌源码】【ecplise的源码】【源码之家404】firstchild源码

时间:2024-11-26 08:46:19 来源:jquery加载源码 分类:娱乐

1.国外的源码FLASH源码中文无法显示

firstchild源码

国外的FLASH源码中文无法显示

       这个和嵌入字体无关,如果没有对应的源码中文字体,一般默认是源码开发棋牌源码宋体。

       很可能是源码编译的问题,我以前出现相同的源码ecplise的源码问题,后来发现是源码源码之家404因为缺少了一句代码,导致编译汉字出现问题。源码

       第一,源码你在你的源码xml文件的最前面加一句:

       <?xml version="1.0" encoding="utf-8" ?>

       第二,打开你的源码flash文件,里面的源码格式大概如此,你可以尝试把省缺的源码代码拷贝到你的文件里:

       System.useCodepage = true;//这句看看漏了没

       var works_xml:XML = new XML();

       works_xml.ignoreWhite = true;//这句也注意一下,如果漏了就补上

       works_xml.load("works.xml");

       works_xml.onLoad = function(success:Boolean) {

        if (success) {

        xmlRoot = works_xml.firstChild;

        total = xmlRoot.childNodes.length;

        thumb = [];//缩略图地址

        image = [];//大图地址

        for (i=0; i<total; i++) {

        thumb[i] = xmlRoot.childNodes[i].childNodes[0].firstChild.nodeValue;

        image[i] = xmlRoot.childNodes[i].childNodes[1].firstChild.nodeValue;

        }

        initThumbs();

        } else {

        trace("Error loading XML");

        }

       };