我正在阅读一张excel表格中的文本。此文本被放入一个temp变量中。
现在我想在另一个脚本中使用这个temp变量。
在茄子里有什么命令吗?
发布于 2013-09-24 09:32:37
在另一个脚本(本例中名为OtherScript )中,创建一个处理程序:
to HandlerName Variable1 //Starts the handler.
//Insert your script commands here
end HandlerName//Ends the handler.在当前脚本中,运行以下行以将temp变量传递给其他脚本:
run OtherScript.HandlerName temp其中temp是要从读取excel工作表的当前脚本传递到其他脚本的变量。
https://stackoverflow.com/questions/13740800
复制相似问题