Beta 4.6.01 is available at http://powerpro.webeddie.com/download/ppro4601.zip
This beta is about making the script syntax a bit more standard with these new alternatives: - use Function FName(a1, a2, ..., a23) instead of @Fname args a1, a2, ... a23 If PowerPro finds a Function statement while executing script file (except at start of function), it quits current function automatically. - Call functions within the same file with FName(a1, a2, ..., a23) instead of [EMAIL PROTECTED](a1, a2, ..., a23) Call functions in other files with local xFname="c:[EMAIL PROTECTED]" // or global or static xFname(a1, a2, ..., a23) or "c:[EMAIL PROTECTED]" (a1, a2, ...a23) // ugly but OK - declare vectors with local v[expr] //instead of local v=vec.create(expr) local v2d[e1, e2) //instead of local v=vec.create2d(e1,e2) local v[expr;growth;minsize] could use global or static too. I have done some testing with these, but if people who use scripts a lot more than me want to try, that would be very helpful.
