The LIVE tools are a subset of the IDL Insight application that allow you to create, modify, and export Insight-like visualizations directly from the IDL command line.
In many cases, you can modify your visualizations using the LIVE tools' graphical user interface directly without ever needing to return the IDL command line. In some cases, however, you may wish to alter your visualizations programmatically rather than using the graphical user interface. Several LIVE routines allow you to do this easily.
The process of using the LIVE tools begins with the creation of a LIVE window via one of the four main LIVE routines: LIVE_CONTOUR , LIVE_IMAGE , LIVE_PLOT , and LIVE_SURFACE . When you use one of these four routines at the IDL command line, you specify some data to be visualized and a LIVE window appears. You can modify many of the properties of the items in your visualization by double-clicking on the item to call up a Properties dialog.
If you find that the graphical user interface does not allow you to perform the operation you wish to perform -- saving your visualization as an image file, say -- you can use the auxiliary LIVE routines. These routines can be divided into two groups:
To use the auxiliary routines, you will need to know the Name of the LIVE window or item you wish to alter. To create an IDL variable containing the names of the elements of a LIVE window, set the REFERENCE_OUT keyword equal to a named variable when you first create your LIVE window. The returned variable will be a structure that contains the names of all of the elements in the visualization you have created. Use the contents of this structure to determine the value of the Name argument for the auxiliary LIVE tools, or to determine the name of the LIVE window you wish to alter.
If you find that the LIVE tools do not provide the level of control you need over your visualizations, consider using Insight itself. You can start the Insight application by entering
insight
at the IDL command prompt.