gpt4 book ai didi

livecode - 新开栈的名称

转载 作者:行者123 更新时间:2023-12-02 03:34:10 24 4
gpt4 key购买 nike

我在自定义属性中存储了一个堆栈,使用

set the cStack of stack "abc" to \
url "binfile:~/desktop.abc.rev"

这将打开堆栈:

go inv stack (the cStack of this stack)

堆栈需要隐藏。由于项目的性质,我无法提前知道堆栈的名称,但我需要知道它的名称才能使用它。我尝试使用 openStacks,因为我认为最后打开的堆栈会出现在列表的顶部,但这是行不通的。我还尝试了 the stacks 但它甚至不包含堆栈的名称。 最后一个堆栈 导致错误。

如何获取最近打开的堆栈的名称?

最佳答案

您可以执行以下操作:

put the openstacks into tOpenStacksBefore

go inv stack (the cStack of this stack)

repeat for each line tStack in the openStacks
if tStack is not among the lines of the openstacks then
exit repeat
end if
end repeat

-- tStack now contains the name of your stack

基本上你是:

  1. 在打开你的之前存储一个打开的堆栈列表。
  2. 对每个 openstacks 重复以找到在打开堆栈之前不在列表中的那个。

关于livecode - 新开栈的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24809278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com