创建新合成并应用名称 Adob​​e cs5 脚本

发布于 2024-10-07 20:32:55 字数 131 浏览 4 评论 0原文

我需要扩展“智能导入”脚本。 我想创作一个新的作品。

然后将每个导入的“元素”作为轨道添加到合成中。 导入的每个图像\序列一个轨道。

所以我需要知道的是如何通过脚本创建一个构图, 以及如何通过脚本向其中添加文件序列。

I need to extend the "smart import" script.
I want to create a new composition.

then add each imported "element" to the composition as a track.
one track per image\sequence that's imported.

So what I need to know is how to create a composition through script,
and how to add a file sequence to it through scripting.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪菊怪哟 2024-10-14 20:32:55
myComp = app.project.item(1);
myComp.layers.add (app.project.item(2));

我通过使用上面的脚本解决了这个问题。
这假设您的合成是开始时唯一的对象。
然后我导入,并将第二个项目(这是我导入的对象)添加到
的组成。

myComp = app.project.item(1);
myComp.layers.add (app.project.item(2));

I resolved it by using the script above.
this assumes your composition is the only objects when starting.
then I import, and add the second item (this is my imported object) to
the composition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文