Two Rhino Python scripts from a single alias?

Hi,

Can I run two Rhino Python scripts from a single alias, and make sure the second one starts after the first one finishes?
I’m trying to solve a timing issue where the first script must complete before the second script begins. The _Pause/_MultiPause doesn’t work!?
How can I do this using Rhino aliases?

Thank you in advance

You should be able to put multiple commands in an alias.
`_NoEcho -_RunPythonScript “myscript1” -_RunPythonScript “myscript2”``

EDIT:
That didn’t work, but I was able to make a short python script that itself launches the two scripts in order.

#! python 3
import rhinoscriptsyntax as rs
script_paths = [
	"script 1",
	"script 2"
]
for script_path in script_paths:
	rs.Command('_NoEcho !_-RunPythonScript "{}"'.format(script_path))