私は画面の向きに基づいて2つの異なる点をタップするオートタッチスクリプトを作成しようとしています。Lua - getOrientation()throwグローバル(0以外の値)を呼び出そうとします
これは私のスクリプトです:
CREATE_TIME=2017-12-11-19-34-51;
SCREEN_SIZE="0x0";
touchDown(0, 182, 1329);
usleep(16000);
touchUp(0);
usleep(40000000);
local o = getOrientation();
alert(string.format("Screen orientation is : %d", 0))
-- Check for the close button's location
local o = getOrientation();
if o == 1 then
touchDown(0, 1016, 68);
usleep(16000);
touchUp(0);
log("Portrait");
else
touchDown(0, 1000, 1818);
usleep(16000);
touchUp(0);
log("Landscape");
end;
usleep(40000000);
touchDown(0, 827, 1114);
usleep(16000);
touchUp(0);
usleep(1000);
問題はgetOrientationとの行に私は、ログファイルにエラーを取得することです:グローバル「getOrientation」(nilの値)を呼び出すための試みを
助けを借りて助けてくれる人はいますか?
ところで、おそらく 'CREATE_TIME =" 2017-12-11-19-34-51 "'を意味します。 – lhf