Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
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, ??????? );
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
On 13/07/2007 at 04:16, xxxxxxxx wrote:
Thank you for the answer!