#pragma rtGlobals=1 // Use modern global access method. // This disables the use of BitBlt (Windows) or ScrollRect (Macintosh) when scrolling // text or tables. Normally it is not needed. Use it if your video card does not scroll right. // Place this file in the Igor Procedures folder in your "Igor Pro User Files" folder. // To find your your "Igor Pro User Files" folder, choose Help->Show Igor Pro User Files. // Once you have done that, Igor will automatically load the file and execute the // IgorStartOrNewHook function at launch time. static Function IgorStartOrNewHook(igorApplicationNameStr) String igorApplicationNameStr if (IgorVersion() >= 6.23) String cmd = "SetIgorOption ScrollingMode=1" Execute cmd endif End