函数名: | 信息弹窗函数 |
调 用: | gma.gui.msgbox(string:title,string:message) |
参 数: | 第一个参数为字符串:弹窗的标题; 第二个参数为字符串:弹窗的内容信息 |
返回值: | 无 |
结 果: | 无 |
备 注: | 无 |
例子:
- 使用弹窗提示用户等待
function Start() gma.gui.msgbox("Please wait","Ping 192.168.1.2 This will take a while if not responding…"); end return Start;