There is no limit. I have had scripts of 200kb and they still worked. They is, however a small problem:
You cannot have more than a certain number of lines in one order (i think 250 or 500 it was, long time ago since i had that problem)
To solve this problem, you must write sub-orders which doe the work and in the 'main order' you will then call them.
Example:
Code: Select all
SubOrder1[ ()
{
///xxx
} ]
SubOrderWithArguments[(arg1,arg2)
{
//yyyy
}
MainOrder[ ()
{
SubOrder1();
SubOrderWithArguments("bla",25);
SubOrderWithArguments("xyz",26);
} ]
Using sub-orders also keeps writing and error-searching time minimal.
Everyone can see the difficult, but only the wise can see the simple.
-----