Try loading the individual skill programs: skill load " program.il" You may need to put in the full path to the program. Inside the program there maybe a axlCmdRegister(" keyboard command" 'actual function name ) If not you will need to type the procedure in the allegro command line: skill functionname() hello world program called hworld.il axlCmdRegister("hiworld" 'axlhWorld) procedure(axlhWorld() printf("HELLO WORLD!\n") ) To execute on the allegro command line: hiworld or, Command > skill load "hworld.il" t Command > skill axlhWorld() HELLO WORLD! t Jerry
↧