我正在使用findAll来构建包含找到的对象的表。
我想单击该表上找到的最后一个对象。
可以找到的对象数量是可变的。
t = findAll("object.png")
t_count = 0
for _ in pairs(t) do t_count = t_count + 1 end
我尝试了这个,但是没有用:
click(t_count - 1)
我该如何进行?
谢谢!
t = findAll("buttons/donation_expand.png")
t_count = 0
for _ in pairs(t) do t_count = t_count + 1 end
toast(t_count)
click(t[t_count -1])
这对我有用。谢谢!