单击表中的最后一个,但最后一个除外

问题描述 投票:0回答:1

我正在使用findAll来构建包含找到的对象的表。

我想单击该表上找到的最后一个对象。

可以找到的对象数量是可变的。

t = findAll("object.png")
t_count = 0
for _ in pairs(t) do t_count = t_count + 1 end

我尝试了这个,但是没有用:

click(t_count - 1)

我该如何进行?

谢谢!

lua
1个回答
0
投票
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])

这对我有用。谢谢!

© www.soinside.com 2019 - 2024. All rights reserved.