local 状态文件="/storage/emulated/0/解说/插件/路标管理器/手势状态.txt"
local 模式文件="/storage/emulated/0/解说/插件/路标管理器/手势模式.txt"
local 当前状态="关闭"
local 当前模式="路标模式"
local 文件=io.open(状态文件,"r")
if 文件 then
当前状态=文件:read("*a") or "关闭"
文件:close()
end
文件=io.open(模式文件,"r")
if 文件 then
当前模式=文件:read("*a") or "路标模式"
文件:close()
end
if 当前状态=="关闭" then
return false
end
if 当前模式=="路标模式" then
local 点击成功=service.click({
{"清除所有通知@系统用户界面"}

})
return 点击成功
elseif 当前模式=="短视频浏览模式" then
service.click({{
"%上滑翻页"
}})
return true
end
return false