Script for refreshing DS and Poser libraries in DS?

Is there a way to refresh DS and Poser libraries in the DS Content Library, using scripting?

Comments

  • OmnifluxOmniflux Posts: 362

    DzAbstractAssetContainer : update(), updateAssets(), updateChildren()

    var oPaneMgr = MainWindow.getPaneMgr();var oPane = oPaneMgr.findPane ("DzContentLibraryPane");var oContainer = oPane.getSelectedContainer();oContainer.updateAssets();	// Update assets in this containeroContainer.updateChildren();	// Update children (eg folders)oContainer.update();	// Update both

     

  • TaozTaoz Posts: 9,731

    Great, thanks very much!  Refreshing the libraries after installing new stuff while DS is open can take a bit of work because of a quirk in the DS library.

Sign In or Register to comment.