Home Technical Talk

MAX-Dope sheet issue: note tracks (image provided)

I've looked online and found a bunch of people with this same issue in 3d max, but do not have a resolution yet.
The dope sheet is randomly creating these "NoteCount" and "day1refCA" tracks.
I have no idea how they're being created. I've reset and merged into a clean new scene, but randomly the issue begins again.

Any tips would be appreciated.

Thank you!

Replies

  • monster
    Offline / Send Message
    monster polycounter
    The 3ds Max dope sheet isn't doing this. It's a 3rd party tool that's creating custom attributes. Check to see what scripts you have installed. In the dope sheep you can go to View > Filters and uncheck Static Values. This should hide them. If you want to delete them you can try this line of script:

    It may not delete them, but the CA look like they are attached to the scene root.
    for i = custAttributes.count rootnode to 1 by -1 do custAttributes.delete rootnode 1
    

    or this
    for i = custAttributes.count rootscene to 1 by -1 do custAttributes.delete rootscene 1
    
  • theStudent
    Thank you so much for your response! I'm checking now to see if it may be the plugin issue as you stated. Testing the script also to see if it helps.
  • theStudent
    So I tried the script in listener and it shows "0" attributes found. And unchecking static values doesn't seem to turn them off.
    My last option is the plugin thing. I guess I would have to go through and delete them one by one to see which is causing the issue.
    Thanks for the tips!
Sign In or Register to comment.