自己做了一个flash来玩,但是遇到了个问题,请帮忙看一下。全部命令如下
stop();
Button1.onRelease = function(){
gotoAndStop(1);
}
Button2.onRelease = function(){
gotoAndStop(2);
}
Button3.onRelease = function(){
gotoAndStop(3);
}
Button4.onRelease = function() {
getURL("http://www.baidu.com", "_self");
}
Button5.onRelease = function() {
getURL("Google", "_blank");
}
Button6.onRelease = function() {
getURL("http://www.baidu.com", "_blank");
}
Button1,2,3分别连接着Button4,5,6,这个是可以用的。
问题在于Button4在frame1, Button5在frame2, Button6在frame3。
Button4的命令是可以用的,点击后会自动打开IE,显示网页。可Button5,Button6怎么点击都不会打开网页,我是不是漏了什么命令了?
stop();
Button1.onRelease = function(){
gotoAndStop(1);
}
Button2.onRelease = function(){
gotoAndStop(2);
}
Button3.onRelease = function(){
gotoAndStop(3);
}
Button4.onRelease = function() {
getURL("http://www.baidu.com", "_self");
}
Button5.onRelease = function() {
getURL("Google", "_blank");
}
Button6.onRelease = function() {
getURL("http://www.baidu.com", "_blank");
}
Button1,2,3分别连接着Button4,5,6,这个是可以用的。
问题在于Button4在frame1, Button5在frame2, Button6在frame3。
Button4的命令是可以用的,点击后会自动打开IE,显示网页。可Button5,Button6怎么点击都不会打开网页,我是不是漏了什么命令了?