Obfuscated scripts_________________________________________________
thinBasic can execute 2 kinds of scripts: plain text script files or obfuscated script files
  • plain text scripts are standard text files you can create with thinAir (thinBasic editor) or other text-only editors. Plain text scripts usually have .tBasic or .tBasicc file extension
  • obfuscated scripts are plain text scripts transformed by thinAir (thinBasic editor) into crypted files. This kind of scripts are useful when you need to distribute you application but you do not want to share the source code or by choice or because they contain sensible data like passwords or whatever you want to keep secret.


How to create an obfuscated script_________________________________________________
Creating obfuscated scripts is very simple. Open you plain-text script into thinAir. Use menu Tools/Obfuscate. thinAir will just create on the fly a new file in the same directory of the original file with the same name but with .tBasicx or .tBasiccx extension.

Attention: keep always the original copy of the plain text script because no one will decrypt an obfuscated script back into its original clean form.

_________________________________________________
More info on thinBasic obfuscation can be found at http://www.thinbasic.com/public/prod...bfuscation.htm