Origin Version (Select Help-->About Origin): 7 & 7.5 Operating System: XP Pro
Hello,
how can I switch "use master items" (as I can do it via "Plot Details" dialog) within a LabTalk script. I know that I can switch between "Copy Page" with and without Master (@PP=1 or 0). But how to switch the general use of master pages?
This is not supported directly, but there are two workarounds ...
This workaround should work in any version of Origin : // Turn Master items OFF win -r Master ExMaster; // Rename the Master window to ExMaster doc -uw; // Refresh // Turn Master items ON win -r ExMaster Master; // Rename the ExMaster window to Master doc -uw; // Refresh
This workaround uses MenuID which may be version dependent : DoMenu 33096; // Toggles the Show Master menu item in v7.5 doc -uw;