Page 1 of 1

How to George Include ????

Posted: 08 Jun 2007, 08:34
by Mads Juul
I have Saved the George Folder with the exaamples and the include directory in the TVpaint folder


if I run this script:

Code: Select all

param none
#INCLUDE "include/Basic.grg"
	tv_warn "juul"
first I get this error message:
ERROR:main program cant be truncated

and Then:
"C:\Programmer\TVPaintAnimation Pro\George\Export.grg"
LINE 3
ERROR:undeterminated main program limits
tv_warn "juul"


??????
-mads

Posted: 08 Jun 2007, 08:36
by ematecki
Did you put a carriage return at the end of the last line ?

The best is to put 2 or 3 empty lines at the end of the file, so when you add something to the script, you don't forget that last carriage return.

Posted: 08 Jun 2007, 08:49
by Mads Juul
Ok I found out as it it said in the manual I have to put the includes in the end af the script (and also functions)

so this works

Code: Select all

param none
   tv_warn "juul" 
#INCLUDE "include/Basic.grg"
-mads