Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Move projectItem into named Bin

Explorer ,
Feb 05, 2018 Feb 05, 2018

So Im liking the searchForBinWithName example, but I cant seem to find a command for moving a projectItems placement in project-window.
Im wanting to move it out of the root and into a named bin.

So:
var projectItem = app.project.rootItem.children[projectSelect];

var targetFolder =  $._PPP_.searchForBinWithName("folderName");

Looking for something like:

projectItem.moveToBin(targetFolder);

How do I put the projectItem into the bin? Cant find an example of this in the PProPanels except for importing?

This seems like basic stuff hehe...

TOPICS
SDK
662
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Engaged , Feb 05, 2018 Feb 05, 2018

Hi Aecorn,

this sounds to the following: Re: Create sequence inside a bin

Does this resolve you issue?

Translate
Engaged ,
Feb 05, 2018 Feb 05, 2018

Hi Aecorn,

this sounds to the following: Re: Create sequence inside a bin

Does this resolve you issue?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 05, 2018 Feb 05, 2018
LATEST

Yes, thank you very much!

projectItem.moveBin(targetFolder);
Works well!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines