★ IDL online help bookmarklet
posted Tue 13 May 2014 by Michael Galloy under IDLOne thing that I have to do regularly is send people a link to a particular page of IDL’s documentation. The problem is that I normally browse the local documentation from the ?
command a the IDL prompt which opens a local webpage in my browser, but is not accessible to someone else on their machine (the path is different depending on platform, version, etc.). What I needed was a way to translate local help URLs to URLs pointing at the online help at exelisvis.com
.
Here is a bookmarklet that does the translation:
javascript:(function(){name=location.href.substring(location.href.lastIndexOf('/')+1);name=name.substring(0,name.indexOf('.'));location.href='http://exelisvis.com/docs/'+name+'.html';})();
Just drag it to your bookmarks bar and click it when on a local IDL help page and it should navigate to the corresponding exelisvis.com
documentation page. It doesn’t do any error checking right now and it doesn’t work for some of the pages that are not the syntax for a particular routine, but it has been very useful for me in the past few days.
May 17th, 2014 at 4:05 am
Hi dear
I want to call an external executable(.exe) program in idl.
is it possible? If yes, what is idl command.
Thanks a lot
May 17th, 2014 at 2:19 pm
Look up the
SPAWN
procedure.