使用JSFL

时间:2015-09-16 10:31:28

标签: javascript html flash-cc jsfl

我想在现有的html文件中添加一些文本/函数。我可以使用FLfile.read()读取该文件,这是我的代码:

var pathCom=fl.getDocumentDOM().pathURI(); //get complete path

var pathWOFile=pathCom.substr(0,pathCom.lastIndexOf('/')); //get the path without file

var readFile=FLfile.read(pathWOFile+'/index.html'); //read the html file

alert(readFile);

我的html文件的结构是:

<html>
  <head>

     <script>
         //i want to add a new function on this line
     </script>

  </head>
  <body>
  </body>
</html>

我甚至已经知道有一个名为FLfile.write()的函数可以将文本追加到文件中,但文本总是添加到结构的最后一行。现在我想在<script>标签之间添加一些文字功能,我该怎么做,对不起我的英文不好,谢谢你的回复

0 个答案:

没有答案