首页 > 网站 > 媒体动画 > 正文

Director实例剖析:Lingo运用之repeat while

2024-09-08 19:27:03
字体:
来源:转载
供稿:网友
lingo应用之repeat while
    repeat while (条件式循环)


播放,以上示例,需下载此插件。 点击下载插件

语法:

repeat while 条件式

命令句 1
命令句 2
命令句 3
...

end repeat

说明:

反复执行 repeat while 及 end repeat 间的命令行,直到条件式的值为真时退出循环

--------------------

the rect of sprite (矩形值)

语法:
the rect of sprite spritenumber

说明:
存取 sprite 的 bounding box 的左,上,右,下的值

示例:
在 message window 检测图象 sprite 1 矩形边的值
put the rect of sprite 1

--------------------

inflate

语法:
inflate (任何rect,宽度的改变值,高度的改变值)

说明:
改变 rect 的大小,其大小的改变为改变值的两倍

示例:
inflate ( rect ( 0 , 0 , 100 , 100 ), - 10 , - 10 ) --原來的矩形长宽各为 100

rect ( 10 , 10 , 90 , 90 ) --inflate后的矩形长宽各为 80

--------------------
范例: 改变图片的大小

效果:

放置一個变大的按钮及一個变小的按钮,再放置一张图片在舞台上,当变大及变小按钮按住不放时,图片持续变大或变小

制作步聚:

1. 放置一张图片在 channel 1,在 channel 2、3 插入两个 push button 分别起名为变大和变小

2. 在 frame 中加入 go to the frame 语句使之循环播放

3. 选择"变大"按钮,设置 lingo,如下所示

on mousedown
repeat while the mousedown
set the rect of sprite 1 = inflate ( the rect of sprite 1 , 1 , 1 )
updatestage
end repeat
end

4. 选择"变小"按钮,设置 lingo,如下所示

on mousedown
repeat while the mousedown
set the rect of sprite 1 = inflate ( the rect of sprite 1 , - 1 , - 1 )
updatestage
end repeat
end

相关附件

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表