lingo语法
时间: 2023-07-01 09:13:05 浏览: 163
LINGO教程(基本语法).pdf
Lingo语法是一种用于Adobe Director软件的脚本语言,主要用于创建交互式媒体应用程序。它具有类似于其他编程语言的基本语法,包括变量、条件语句、循环语句、函数和对象等。以下是一些示例Lingo代码:
1. 创建变量并赋值:
```
myVar = 5
```
2. 条件语句:
```
if myVar > 10 then
alert("myVar is greater than 10")
else
alert("myVar is less than or equal to 10")
end if
```
3. 循环语句:
```
repeat with i = 1 to 10
put i
end repeat
```
4. 函数:
```
on addTwoNumbers(num1, num2)
return num1 + num2
end addTwoNumbers
```
5. 对象:
```
sprite(1).locH = 100
sprite(1).locV = 200
```
阅读全文