Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
CarstenFEV
Posted - 03/22/2006 : 3:16:02 PM 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?
Thanks in advance & best regards Carsten
1 L A T E S T R E P L I E S (Newest First)
greg
Posted - 03/22/2006 : 4:45:08 PM 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;