Jump to content

Talk:ExtendScript

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 2a02:9b0:8012:5973:8ce8:ec11:5be3:b41d (talk) at 10:27, 26 November 2024. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
  1. target photoshop

// محاولة إعادة تعيين التفضيلات try {

   var prefsFile = new File(Folder.userData + "/Adobe/Adobe Photoshop [الإصدار]/Adobe Photoshop Preferences");
   if (prefsFile.exists) {
       prefsFile.remove();
       alert("تم حذف التفضيلات. يرجى إعادة تشغيل الفوتوشوب.");
   } else {
       alert("لم يتم العثور على التفضيلات.");
   }

} catch (e) {

   alert("حدث خطأ أثناء تنفيذ السكربت: " + e.message);

}