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

Clear all filters set in Filters panel. Scriptable?

Advocate ,
Apr 29, 2013 Apr 29, 2013

Copy link to clipboard

Copied

Hi

I´m looking for app events but did not find any method that is able to reset the filters set in the Filters panel.

Suppose the Filters panel has checked some options (like to see only green label photos and 2 stars). I want to clear all filters and see all files in the folder. So I can continue my scripts task.

Can you confirm if this kind of "reset Filters panel" can scriptable??

Thank you a lot

Gustavo

TOPICS
Scripting

Views

567

Translate

Translate

Report

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

Valorous Hero , Apr 29, 2013 Apr 29, 2013

I don't know of a direct way of resting the filters, but as a work-around you could go up a folder then back to the original folder, this will reset the filters I.E.

var existingPath = Folder(app.document.presentationPath);

app.document.thumbnail = Folder(app.document.presentationPath).parent;

app.document.thumbnail = existingPath;

Votes

Translate

Translate
Valorous Hero ,
Apr 29, 2013 Apr 29, 2013

Copy link to clipboard

Copied

I don't know of a direct way of resting the filters, but as a work-around you could go up a folder then back to the original folder, this will reset the filters I.E.

var existingPath = Folder(app.document.presentationPath);

app.document.thumbnail = Folder(app.document.presentationPath).parent;

app.document.thumbnail = existingPath;

Votes

Translate

Translate

Report

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
Advocate ,
Apr 30, 2013 Apr 30, 2013

Copy link to clipboard

Copied

LATEST

Thank you Paul (as ever)

This would solve the problem.

Best Regards

Gustavo.

Votes

Translate

Translate

Report

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