Keep .ipf permanently compiled in the background?
Goure
Is there a way to keep an .ipf permanently compiled in the background? I have been editing alot of code lately, and would like to have some of my menu functionality in a separate ipf available all the time. Whenever I make an edit to a different ipf, my customized menus disappear because they are not compiled as soon as I edit an open ipf. Is there a way to have some code always compiled in the background?
Thanks.
May 19, 2013 at 10:05 pm - Permalink
Here's a small part of what I was able to do - create keyboard shortcuts for Commentize and Decommentize and that don't disable themselves after you make an edit to an ipf.
Save this as startupMenus.ipf and place in your Igor Procedures folder.
Menu "Procedure"
"Commentize/8",/Q, Execute/P/Q/Z "DoIgorMenu \"Edit\", \"Commentize\""
"Decommentize/9",/Q, Execute/P/Q/Z "DoIgorMenu \"Edit\", \"Decommentize\""
End
May 20, 2013 at 01:34 pm - Permalink
May 20, 2013 at 02:44 pm - Permalink