Delay 200
Import "ShanHai.lua"
Delay 200
Delay 200
Dim 截屏 = shanhai.RndEx(0, 9)
Delay 100
Dim 文件路径=GetTempDir()&"CNM.txt"
Dim 内容=array("我爱你中国","我爱你母亲")
// Call file.WriteLines (文件路径,内容) //将内容中的两行字符串写入文本文件
TracePrint file.Readline(文件路径, 1) //读取并输出第一行字符串内容"我爱你中国"
TracePrint file.Readline(文件路径, 2) //读取并输出第二行字符串内容"我爱你母
Delay 500
SnapShot "/sdcard/"&截屏&".png"
Delay 50
Dim 返回值
返回值=Device.GetDPI()
TracePrint "当前设备屏幕DPI大小为:" & 返回值
//例子1
//全屏截图,命名为test.png并保存至sd卡
SnapShot "/test.png"
//例子2
//只截取屏幕左上角100,100到右下角300,,300范围图片,命名为test.png并保存至sd卡
SnapShot "/test.png",100,100,300,300