06-07-2008, 04:23 AM
I'm not quite sure what your question is, but the Original poster wanted to run a couple of scripts using one script. Is it what you are trying to do?
If yes, then I must tell you that it is not necessary, but just another way of accomplishing this. You can also call these scripts like this:
instead of using:
Call MasterFunc()
Just a matter of preference, I guess.
If yes, then I must tell you that it is not necessary, but just another way of accomplishing this. You can also call these scripts like this:
Code:
Call Login()
Call Manipulations()
Call LogOut()
instead of using:
Call MasterFunc()
Just a matter of preference, I guess.