flash 调用 脚本
Download the sample files here.
在此处下载示例文件 。
1. Create a new movie with width=400 and height=300.
1.创建一个新的电影,宽度为400,高度为300。
2. Create two rectangles, one that’s red and one that’s blue.
2.创建两个矩形,一个为红色,另一个为蓝色。
3. Convert the first red rectangle into a movieclip, and name it "red" in the instance box.
3.将第一个红色矩形转换为动画片段,然后在实例框中将其命名为“红色”。
4. Convert the second blue rectangle into a movieclip and name it "blue" in the instance box.
4.将第二个蓝色矩形转换为动画片段,并在实例框中将其命名为“ blue”。
5. Create a text field, and name it "information".
5.创建一个文本字段,并将其命名为“信息”。
6. Create a new layer above the current layer, and name it "actions".
6.在当前层上方创建一个新层,并将其命名为“ actions”。
7. Insert the following action into the first key frame:
7.将以下操作插入第一个关键帧:
if (circle.hittest(red)) { information = "The Circle Hit Red"; } if (circle.hittest(blue)) { information = "The Circle Hit Blue"; }8. In the second frame, enter this action:
if (circle.hittest(red)) { information = "The Circle Hit Red"; } if (circle.hittest(blue)) { information = "The Circle Hit Blue"; }8. In the second frame, enter this action:
翻译自: https://www.sitepoint.com/script-simple-hit-detection/
flash 调用 脚本