本地目录和网页目录使用的常见问题(转)

      AS学堂 2006-11-28 1:26
有一点要注意,假如你的 swf 放在 images 文件夹内,而 swf 所插入的 html 在 images 文件夹外,或另外的路径,此时的相对路径应以该 html 为准。例如:
  
有三个文件,“a.swf”、“b.html”、“c.html”
  
a.swf 在 images 文件夹内,b.html 和 c.html 在 images 文件夹的上一级目录,a.swf 嵌在 b.html 内,此时,a.swf 的按钮要链到 c.html,它上面的写法应该如下:
on (release)
{
getURL("c.html");
}
  
而不能写成
on (release)
{
getURL("../c.html");
}
  
loadMovie也是同样的道理。假设 a.swf、b.swf 同在 images 文件夹内,它们插入到 c.html 中,此时,如果 a.swf 要加载 b.swf,在 flash 中可直接写成:
loadMovie("b.swf",2);
  
但插入到网页之后,路径就应该是:
loadMovie("images/b.swf",2);
标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commenttime}{commentauthor}

{CommentUrl}
{commentcontent}