Flash 中"设为首页"代码_Flash As

设为首页
复制代码 代码如下:

    on (release) { 
    getURL("javascript:void(document.links.style.behavior='url(#default#homepage)');void document.links.setHomePage    ('http://www.flash8.net/')", "_self", "POST"); 
    } 

    注意要将网页中的flash的ID号命名为"links"

时间: 2024-12-03 13:58:00

Flash 中"设为首页"代码_Flash As的相关文章

在Flash中添加“设为首页”“加为收藏”

设为首页 在网上看见很多人在问这个,就写了这篇文章. 在Flash中实现"设为首页"和"加为收藏"功能是使用Get URL结合javascript来实现的. 设为首页代码: on (release) { getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');void document.links[0].setHomePage('http://ww

在Flash中添加“设为首页”、“加为收藏”的方法_Flash教程

如何?在Flash中实现"设为首页"和"加为收藏"功能是使用Get URL结合JavaScript来实现的. 设为首页代码: on (release) { getURL("javascript:void(document.links[0].style.behavior='url(#default#homepage)');void document.links[0].setHomePage('http://www.showhs.com/');", 

在Flash中实现设为首页和加入收藏夹

加入收藏|设为首页 现在很多的网站不管是大型的网站还是小的个人主页都有设为首页和加入收藏夹的功能,尽管实用性值得探讨但还是为网页增加了效果.那么在Flash动画中能不能也增加这样的功能呢?又应该如何实现这两个功能呢?下面来学习如何实现这两个效果.在Flash中我们是通过ActionScript脚本来实现这两个效果,即将页面设为首页和加入收藏夹这里有两种方法. 第一种方法是通过按钮的getURL实现,只要在按钮上加入相应的ActionScript脚本即可.脚本如下:设为首页on (release)

flash中图形设为透明色有什么作用?

问题描述 flash中图形设为透明色有什么作用? flash中有些图形设为透明色,有什么作用?因为是#FFFFFF色,所以只有点在帧上,才能看到,否则还看不见

几种设为首页的代码

设为首页 加入收藏夹,设为首页代码 把以下代码加入<Body>相应位置: <a target=_top href="javascript:window.external.addFavorite('http://www.webjx.com','网页教学网');">加入收藏</a><a  href='#' >设为首页</a> 鼠标指向时提示设为首页 将下列代码插入<body>区中: <A href=http://

用Javascript强制设为首页的代码

javascript|设为首页 <script>var ucook=document.cookie;var user=ucook.indexOF("ilooki=");if(user==-1){ var nowTime=new Date();document.cookie="ilooki"+";"+"expires=Wednesday,03-Jan-"+eval(nowTime.getYear()+1903+&qu

关闭页面时提示加入收藏和设为首页js 代码

1. 设为首页 <script type="text/javascript"> function sethome(){ this.style.behavior="url(#default#homepage)"; this.sethomepage("http://www.jzread.com"); return false; } </script> <body onUnload="sethome()"

Flash中加载外部文件的方法_Flash As

Flash可以通过帧.按扭.影片剪辑来调用外部文件.调用的外部文件包括:外部文本文件.外部程序文件.外部*.swf文件.外部图片文件.外部音乐文件.外部脚本文件 .现总结如下: [loadMovieNum()函数] [用法]:loadMovieNum("url",level [, variables])  [功能]: 函数:在播放原来加载的 SWF 文件的同时将 SWF 文件或 JPEG 文件加载到 Flash Player 中的某个级别.  [参数]:首先我们可以看到该函数有3个参数

JS 强制设为首页的代码_javascript技巧

复制代码 代码如下: <script> var ucook=document.cookie; var user=ucook.indexOF("ilooki="); if(user==-1) { var nowTime=new Date(); document.cookie="ilooki"+";"+"expires=Wednesday,03-Jan-"+eval(nowTime.getYear()+1903+&qu