AS3常用代码

更新时间:2023-06-04 22:22:34 阅读: 评论:0

flash常用代码!(精)
flash, 代码
flash AS3的全屏代码:this.stage.displayState=StageDisplayState.FULL_SCREEN; 退出代码:
tc_btn.addEventListener(MouEvent.CLICK, tuichu);
//给overbtn这个按钮添加鼠标点击执行tuichu函数的侦听
function tuichu(event:MouEvent):void {
fscommand("quit");
//鼠标点击执行tuichu时swf退出
}
时间轴上停止代码:this.stop()
按钮代码:
红色代码为自定义函数,同一按钮中相同,不同按钮必须不同以区别开来。
播放和停止
bf_btn.addEventListener(MouEvent.CLICK,work1);
function work1(event:MouEvent){
this.play()
}
elispot
tz_btn.addEventListener(MouEvent.CLICK,work2);
function work2(event:MouEvent){
this.stop()
}
跳转代码
shou_btn.addEventListener(MouEvent.CLICK,work1);
function work1(event:MouEvent){
gotoAndStop("首页");
}
tz_btn.addEventListener(MouEvent.CLICK,work2);
function work2(event:MouEvent){
gotoAndPlay(1);
}
逐帧代码:
xy_btn.addEventListener(MouEvent.CLICK,work1);
function work1(event:MouEvent){
}
Sy_btn.addEventListener(MouEvent.CLICK,work2);
function work2(event:MouEvent){
this.prevFrame()
}
按钮控制影片剪辑
tz_btn.addEventListener(MouEvent.CLICK,work1);
function work1(event:MouEvent){
this.AndPlay(3)
}
按钮暂停代码;
(1)控制主场景暂停的方法是,在舞台上建立个播放暂停按钮,起名pau_btn。在时间线上添加代码:pau_btn.addEventListener(MouEvent.CLICK,playpauMC);
//上面是AS3中强大的侦听事件,基本模型为事件源.addEventListener(事件,触发);本句意思是:在pau_btn上添加一个鼠标点击执行playpauMC函数的侦听事件。
function playpauMC(event:MouEvent):void {
//当点击pau_btn时,执行下面的动作,下面是让this.id这个值和上一次的不同简单的说就是在True和Fal之间来回切换
this.id=!this.id ;
//这是用到?:运算符如果this.id为真,则执行":"号前面的语句,即movieclip.stop(); 如假则执行后面的语句,即movieclip.stop();
this.id ?this.stop() :  this.play();}
mianfeifanyi
bec商务英语高级(2)控制主场景暂停的方法是,在舞台上建立个名为pau_btn播放暂停按钮,控制影片剪辑yp_mc。在时间线上添加代码:
pau_btn.addEventListener(MouEvent.CLICK, playmc);
//给pau_btn添加鼠标点击执行playmc函数的侦听
function playmc(event:MouEvent):void {
this.yp_mc.play();
//movieclip播放
veEventListener(MouEvent.CLICK, playmc); //给pau_btn注销鼠标点击执行playmc函数的侦听
pau_btn.addEventListener(MouEvent.CLICK, stopmc);
软盘是什么//给pau_btn添加鼠标点击执行stopmc函数的侦听
}
function stopmc(event:MouEvent):void {
this.yp_mc.stop();
//movieclip暂停
veEventListener(MouEvent.CLICK, stopmc); //给paubtn注销鼠标点击执行stopmc函数的侦听
tubesss com
pau_btn.addEventListener(MouEvent.CLICK, playmc);
//给pau_btn添加鼠标点击执行playmc函数的侦听}
显示、隐藏按钮代码:
this.yp_mc.visible=fal;
//以上代码让yp_mc首先在场景中隐藏
this.xs_btn.addEventListener(MouEvent.CLICK, xianshitrue); function xianshitrue(event:MouEvent):void {
this.yp_mc.visible=true;
}
散曲
//以上为xs_btn显示按钮代码
<_btn.addEventListener(MouEvent.CLICK, ycfal); function ycfal(event:MouEvent):void {
this.yp_mc.visible=fal;
}
//以上为yc_btn隐藏按钮代码
yp_mc影片拖放代码:
yp_mc.addEventListener(MouEvent.MOUSE_DOWN, tuo); function tuo(event:MouEvent):void {
this.yp_mc.startDrag();
}
yp_mc.addEventListener(MouEvent.MOUSE_UP, ting);
function ting(event:MouEvent):void {
this.yp_mc.stopDrag();
}
划线代码:先放一个hx_btn的按钮,输入如下代码:
var lines :Sprite =  new Sprite ();
addChild(lines);
stage.addEventListener(MouEvent.MOUSE_DOWN,lineBegin); stage.addEventListener(MouEvent.MOUSE_UP,lineEnd);
function lineBegin(event:MouEvent):void {
// lineStyle(10线径,0x0099ff蓝色,1)16711935粉色
stage.addEventListener(MouEvent.MOUSE_MOVE, lineDraw); }
function lineDraw(event:MouEvent):void {
}
function lineEnd(event:MouEvent):void {
}
btn.addEventListener(MouEvent.CLICK,lineClearn);
function lineClearn(event:MouEvent):void {
技术交流英文
}
lines.filters = [new DropShadowFilter()];
加载外部swf的代码:
var loader oader = new Loader();
function completeHandler(event:Event) {
var _content isplayObject = t;
this.addChild(loader);
}
var myURL:URLRequest=new URLRequest("1.swf");
var myLoader oader=new Loader();
put upmyLoader.load(myURL);
xfireaddChild(myLoader);
linkpark

本文发布于:2023-06-04 22:22:34,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/78/865000.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:代码   按钮   执行   函数   鼠标
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图