Creating Partial Binary (.bin) Files
1. Create a new library in Adams View to hold any customization:
library create library_name = .mylibrary
2. Place any customization into this library within Adams View, for example:
macro create macro_name = .mylibrary.firstmacro commands_to_be_executed = "list_info variable variable=*" user_entered_command = all_variables
3. Save this library as a partial binary file. Specifying the proper library name as the entity is very important:
file binary write entity_name = .mylibrary file_name = "mylibrary.bin"
4. This partial binary can be read in, for testing or use, via a similar 'read' command that specifies the entity:
file binary read file_name = "mylibrary.bin" entity_name = .mylibrary