Hi there,
I'm just having a little difficulty sending parameters though
Application.ExecuteScript to functions within the scripts.
So say I have a script called "test" that looks something like this -
Code:
function TEST(message){
logmessage (message);
}
I could run it from within another script like this -
Code:
Application.ExecuteScript("test.js","JScript","hello");
But how could i send something to the message component of the test script. I've tried adding it after the fuction name but it deosnt seem to work.
Any ideas?
Thanks,
Pete