有一点要注意,假如你的 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) ...
有三个文件,“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) ...