Track View uses two different modes: Curve Editor and Dope Sheet. Curve Editor mode displays animation as function curves, while Dope Sheet animation appears as a spreadsheet of keys and ranges. Keys are color-coded for easy identification. Some Track View functions, such as moving and deleting keys, are also available on the track bar near the time slider, which can be expanded to show curves as well. The Curve Editor and Dope Sheet open by default as floating windows, but you can also dock them under the viewports at the bottom of the interface, or or even open them in a viewport. You can name Track View layouts and store them in a buffer for later reuse. Track View layouts are stored with the MAX scene file.
Track View — Curve Editor
Track View — Dope Sheet (Edit Keys)
Track View can perform a variety of scene management and animation control tasks. Use Track View to:
To change the frames in which a controller takes effect:
When you apply a controller or constraint to an object's motion, the frame range over which controller takes effect is determined by the current active time segment. If you then change the active time segment or the animation length, the duration of the controller's influence doesn't change. Sometimes applying a controller (such as Path Constraint) automatically sets keys that you can use to change this range. But others, such as Noise controllers, don't set keys. In such cases, follow this procedure:
For more information, see Dope Sheet Introduction.
To select keys in Track View (either mode), do any of the following:
To delete keys in Track View (either mode):
To force Track View to always display on a second monitor:
If you are running a dual-monitor setup, you can force Track View to display on the right-hand monitor by editing a script.
The MAXScript script that opens the Track View – Function Curve Editor appears.
if (trackviews.open "Track View - Curve Editor" layoutName:"Function Curve Layout") == true then
max_window = getMaxWindowSize() --get Desktop size if (trackviews.open "Track View - Curve Editor" layoutName:"Function Curve Layout" pos:[max_window.x/2,0] height:max_window.y width:(max_window.x/2) ) == true then
This should open the Track View in a new session over the right half of the desktop. Assuming that a dual-monitor setup reports twice the width, this will force the Track View on the second monitor. On a single monitor, it opens it over the right half of the monitor. Of course, you could enter your own numbers like pos:[1024,0] height:768 width:1024 in case you are running two monitors at 1024x768.
To open Track View in a viewport: