Scientific Calculator Plus Help : MFP compiling functions
Function name | Function info |
---|---|
::mfp_compiler::annotation::build_asset::copy_to_resource(2) : copy_to_resource(source_path, destination_path) is a function for MFP compiler, which means it takes effect only when MFP is packing scripts to build an MFP app. It copies file(s) in source_path to the destination_path inside Android assets folder. In this way an MFP app built from the current script can still find referred sound or image files by searching the MFP app's assets. It returns a three element array with first element is string based source path, second element is string based resource name and last element is string based destination path. |
|
::mfp_compiler::annotation::compulsory_link::get_all_referred_units(0) : get_all_referred_units() is a function for MFP compiler, which means it takes effect only when MFP is packing scripts to build an MFP app. It returns an array of all the MFP function and class references defined in all the user defined libs. |
|
::mfp_compiler::annotation::compulsory_link::get_classes(0...) : get_classes(...) is a function for MFP compiler, which means it takes effect only when MFP is packing scripts to build an MFP app. It has arbitary number of string based parameters. Each parameter is a class name. It returns an array of all the MFP class references defined in the parameters. |
|
::mfp_compiler::annotation::compulsory_link::get_functions(0...) : get_functions(...) is a function for MFP compiler, which means it takes effect only when MFP is packing scripts to build an MFP app. It has arbitary number of string based parameters. Each parameter is a function name. It returns an array of all the MFP function references defined in the parameters. |