Scripting Resources for DigitalMicrograph™

banner

Dave Mitchell's DigitalMicrograph™ Scripting Website

Home | Scripts | Examples | Functions | Recent Updates | Tutorials | Resources | Publications | Consulting | Projects | Contact & Bio |PyJEM| Search

 

Display Operator and Specimen
Function
Script to source the current operator and specimen values from the Global Info and display them in the Results window.
Version
version:20021113, v1.0
Author
D. R. G. Mitchell
Acknowledgements
-
Comments

These variables are sourced from the Global Info and become appended to all subsequent images until changed. DM images contain meta data which includes the Microscope Info data, which includes such things as operator, specimen name, magnification, voltage etc. These variables can be set with the 'Global Info' window under the file menu - Tags: Microscope Info. Companion scripts include: 'Set Operator and Specimen' which will prompt the user to set these parameters, and 'Multiple Modify Operator and Specimen' which allows this meta data information to be corrected on all currently open images - useful where the images were originally captured under the wrong settings. More generally, this script shows how to access the Global Info with the 'GetPersistentStringNote()' command.

System Requirements
Should be compatible with all recent versions of DigitalMicrograph.
Known Issues
-
Supported
Yes
Included Files
Main script file.
Source Code

// Script to display the current operator and specimen values in the Results window

// These variables are sourced from the Global Info settings and become appended to all

 

// subsequent images until changed. DM images contain meta data which includes the Microscope

// Info data, which also includes such things as magnification, voltage etc.

 

// These variables can be set with the 'Global Info' window under the file menu - Tags: Microscope Info.


// Companion scripts include: 'Set Operator and Specimen' which will prompt the use to set these parameters, and

// Multiple Modify Operator and Specimen' which allows this meta data information to be corrected on all currently

// open images - useful where the images were originally captured under the wrong settings.


// D. R. G. Mitchell, Nov 2002

// adminnospam@dmscripting.com (remove the nospam to make this email address work)

// version:20021113

// v1.0

 

String operatorname, specimen

operatorname=getpersistentStringNote("Microscope Info:Operator")

specimen=GetpersistentStringNote("Microscope Info:Specimen")

 

Result("\n"+"Current Operator = "+operatorname+"\n")

Result("Current Specimen = "+specimen+"\n\n")