0

我正在阅读一张 Excel 表格中的文本。该文本被放入一个临时变量中。

现在我想将此临时变量用于另一个脚本。

茄子里有什么命令吗?

4

1 回答 1

1

在您的其他脚本(在此示例中名为 OtherScript)中,创建一个处理程序:

to HandlerName Variable1 //Starts the handler.
      //Insert your script commands here 
end HandlerName//Ends the handler.

在您当前的脚本中,运行以下行以将您的临时变量传递给另一个脚本:

run OtherScript.HandlerName temp

其中 temp 是您希望从读取 excel 表的当前脚本传递给其他脚本的变量。

于 2013-09-24T01:32:37.327 回答