![]() |
Forum Index : Microcontroller and PC projects : Help files and how best to use them
Author | Message | ||||
electricat![]() Senior Member ![]() Joined: 30/11/2020 Location: LithuaniaPosts: 288 |
For any furthurer discusions (and sharing), this was moved from RC thread. help.txt templates Only commands Commands and functions with full desriptions. Edited 2025-04-21 22:47 by electricat My MMBasic 'sand box' |
||||
electricat![]() Senior Member ![]() Joined: 30/11/2020 Location: LithuaniaPosts: 288 |
- I made help.txt files accordingly. - I found also, I missed and not added in previous uploads TRIANGLE SAVE / RESTORE - Added text files as in official help manual (no pictures, tried use ASCII if possible). Means , now there is almost full official help +3D commands from CMM2 - Tried to remove unnecessary duplicatings - Moved important BETA notes to external file. All beta changes can be listed in one go, entering '*' as keywoard. > HELP *** Sure I might be missed something. Tried to follow and documenting beta thread at my best. So now, there is three groups of files inside archive. -Beta changes (long only/verbose) -commands and functions only (long/verbose and short) -full help as per official manual (long/verbose and short) Short versions still contains explanations near commands I felt might be important/hard to rememeber. Help_system_Picomites.zip If you see any bad problems needed to fix, please post. I will fix at free time. P.S. Personally I use different format of this help. ~ COMM/FN (or TOPIC or OPT or MM) ; args ; optionals ; theme_keyword(s) ; * I believe it`s more friendly for new users. I had problems with your file "long__nosep_official_help.txt" as there are lots of NUL chars in it. Had to remove them all, now it is usable. Didn't check the other files, but they may have the same problem. I updated files, should be OK now Edited 2025-04-25 02:10 by electricat My MMBasic 'sand box' |
||||
electricat![]() Senior Member ![]() Joined: 30/11/2020 Location: LithuaniaPosts: 288 |
Dirty and simple three help.txt files switcher. Copy choosen help files to -> A: Rename them -> long_help.txt ; short_help.txt ; beta_help.txt Add -> OPTION F6 "sw_help"+chr$(13) Code below -> LIBRARY SAVE Sub sw_help sw_cdrw$=MM.Info(DRIVE) sw_cdir$=Cwd$ Drive "A:" Chdir "A:" sw_long_h=MM.Info(exists file "long_help.txt") sw_short_h=MM.Info(exists file "short_help.txt") sw_beta_h=MM.Info(exists file "beta_help.txt") If sw_long_h= 1 And sw_short_h=1 Then Rename "help.txt" As "beta_help.txt" Rename "short_help.txt" As "help.txt" Print "SHORT HELP version online" End If If sw_long_h= 1 And sw_beta_h=1 Then Rename "help.txt" As "short_help.txt" Rename "long_help.txt" As "help.txt" Print "LONG HELP version online" End If If sw_short_h= 1 And sw_beta_h=1 Then Rename "help.txt" As "long_help.txt" Rename "beta_help.txt" As "help.txt" Print "BETA HELP version online" End If Drive sw_cdrw$ Chdir sw_cdir$ End Sub My MMBasic 'sand box' |
||||
![]() |
![]() |
The Back Shed's forum code is written, and hosted, in Australia. | © JAQ Software 2025 |