[TF] variable help
Brought to you by:
kenkeys
|
From: johans at stack.nl (J. v. Selst) - 2003-05-22 21:12:37
|
Foo Bar wrote: > That worked great. However, when I tried to apply the same principles > to an auto assist function, it doesn't work. > /def autoass = \ > > /set ass1=%1%;\ Is this empty line in your file as well? An empty line will end the macro definition, so in this case the macro 'autoass' would do nothing at all and the variable 'ass1' would be set to %1%; when the file is loaded. You should remove the empty lines. Greetings, Johan |