在您的其他脚本(在此示例中名为 OtherScript)中,创建一个处理程序:
to HandlerName Variable1 //Starts the handler.
//Insert your script commands here
end HandlerName//Ends the handler.
在您当前的脚本中,运行以下行以将您的临时变量传递给另一个脚本:
run OtherScript.HandlerName temp
其中 temp 是您希望从读取 excel 表的当前脚本传递给其他脚本的变量。