TimeTrack

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 06/07/2007 at 01:41, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   10 
Platform:   Windows  ;   
Language(s) :     C++  ;

---------
Hi,
I want to make new TimeTrack, but do not understand DeskID.
CTrack* pTrackTime = CTrack::Alloc( pObj, ??????? );

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 12/07/2007 at 01:17, xxxxxxxx wrote:

Time tracks are somewhat special in Cinema, so they have a special ID. See little example below:

  
#define ID_TIMETRACK -1  
  
CTrack *mytrack = CTrack::Alloc(op, DescLevel(ID_TIMETRACK,ID_TIMETRACK,0));  

cheers,
Matthias

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 13/07/2007 at 04:16, xxxxxxxx wrote:

Thank you for the answer!