解决方法一:
flash的链接是在flash中加的,frontpage不能给它加,
swf文件位于网页的最上层。
flash中加链接很容易。
在针上写
on(press){
getURL("http://www.baidu.com",target="_blank")
}
解决方法二:
一.影片控制函数
1) gotoandplay 跳转某一帧播放
2) gotoandstop 跳转某一帧停止
3) nextframe 转到下一帧 如 on(press) {nextframe;}
4) prevframe 转到上一帧 如 on(press) {prevframe;}
5) play 开如向后播放影片 如on(press){play();}
6) stop 停止当前播放位置 如on(press){stop();}
7) nextscene 转到下一个场景如 on(press){nextscene();}
8) prevscene 转到上一个场景如 on(press){prevscene();}
9) stopallsounds 停止所有声音如 on(press){stopallsounds();}
二.济览器/网络
1) fscommand("fullscreen", "true"); 全屏显示 可以加在第一帧中,也可以加在按加在按钮中.如加在按钮中则为on(press){fscommand("fullscreen", "true"); }
fscommand("quit"); 退出
如果加在帧中程序为fscommand("quit"); 意为当播放此帧自动退出.
若加在铵钮中则为on (release) {fscommand("quit");}意为当单击时退出.
2) geturl 定位地址
可以对文件加,也可以对按钮加.
对文本加:选中整个文本或单个文字,在文本属性栏的链接加地址如:http://www.sina.com
对按钮加:选中按钮,点动作,双击geturl 结果为: on(press){geturl("http://www.sina.com","_blank");} //blank以新的窗口打开&
flash的链接是在flash中加的,frontpage不能给它加,
swf文件位于网页的最上层。
flash中加链接很容易。
在针上写
on(press){
getURL("http://www.baidu.com",target="_blank")
}
解决方法二:
一.影片控制函数
1) gotoandplay 跳转某一帧播放
2) gotoandstop 跳转某一帧停止
3) nextframe 转到下一帧 如 on(press) {nextframe;}
4) prevframe 转到上一帧 如 on(press) {prevframe;}
5) play 开如向后播放影片 如on(press){play();}
6) stop 停止当前播放位置 如on(press){stop();}
7) nextscene 转到下一个场景如 on(press){nextscene();}
8) prevscene 转到上一个场景如 on(press){prevscene();}
9) stopallsounds 停止所有声音如 on(press){stopallsounds();}
二.济览器/网络
1) fscommand("fullscreen", "true"); 全屏显示 可以加在第一帧中,也可以加在按加在按钮中.如加在按钮中则为on(press){fscommand("fullscreen", "true"); }
fscommand("quit"); 退出
如果加在帧中程序为fscommand("quit"); 意为当播放此帧自动退出.
若加在铵钮中则为on (release) {fscommand("quit");}意为当单击时退出.
2) geturl 定位地址
可以对文件加,也可以对按钮加.
对文本加:选中整个文本或单个文字,在文本属性栏的链接加地址如:http://www.sina.com
对按钮加:选中按钮,点动作,双击geturl 结果为: on(press){geturl("http://www.sina.com","_blank");} //blank以新的窗口打开&