Lingo应用之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

  1. 选择"变小"按钮,设置 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

  • 5
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值