Skip to content

Instantly share code, notes, and snippets.

@TSCG
Last active March 4, 2019 07:59
Show Gist options
  • Save TSCG/a3ae98c481d0c4967595e916c6a2329e to your computer and use it in GitHub Desktop.
Save TSCG/a3ae98c481d0c4967595e916c6a2329e to your computer and use it in GitHub Desktop.
[AE]全フッテージのリロード
for (i = 1;i<app.project.items.length;i++){
a = app.project.items[i];
if (a != undefined) {
if (a.file != undefined){
app.project.items[i].mainSource.reload() ;
}
if (a.proxySource != null){
app.project.items[i].proxySource.reload ;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment