Dump keywords and variables ?

Blitz3D Forums/Blitz3D Programming/Dump keywords and variables ?

jfk EO-11110(Posted 2010) [#1]
Wasn't there a function in Blitz that allowes to export all Command names / keywords, probably also all variable names? Maybe with the debugger somehow?


jfk EO-11110(Posted 2010) [#2]
Nevermind, found it:
http://www.blitzbasic.com/Community/posts.php?topic=63435#708254

The variables can be seen in the debugger, but can they also be exported to a file or so?


Zethrax(Posted 2010) [#3]
The line below, run as a batch (.bat) file, should do what you want, but doesn't seem to work.

It creates an 'output.txt' file in the folder that the batch file is in, but the file just contains the text 'Unable to open linker.dll' instead of the keywords and syntax text. The linker.dll file is present in the bin folder, so I don't know what's going wrong there. Probably some relative linking issue.

"C:\Program Files\Blitz3D\bin\blitzcc.exe" +k >> "output.txt"


Yasha(Posted 2010) [#4]
That method and ones like it work perfectly for me. Have you checked that your path is correct and your installation isn't corrupted?

(I just run it from the command prompt rather than bother with a batch file.)


Yue(Posted 2010) [#5]
Sorry I do not hear what they say, someone could put me aware that I find very interesting.


jfk EO-11110(Posted 2010) [#6]
If you use a batch file, make sure the BAT file is located in the right folder, probably in the same as Blitz3D binaries.