Hi Andrew,
I looked up the ADE XL SKILL reference, there is no such function as axlRunSimulation(), but only a function called axlRunAllTests(), which has 2 arguments:
axlRunAllTests(
t_session
t_mode
)
=> x_runid | nil
For the argument t_session, a session name must be provided. Initially, I wrote:
t_session = axlGetWindowSession()
However, since .cdsinit is executed at the beginning when you start virtuoso, this line will only generate a "nil" value.
Is there any way to avoid this? Like defering the evaluation of axlGetWindowSession() till "F5" is actually pressed?
Thanks!