Hi,
myDoc = app.activeDocument;
fontToSearch = "Zapf Dingbats"; // watch a typo errors
app.findTextPreferences = null;
app.findTextPreferences.bulletsAndNumberingListType = ListType.BULLET_LIST;
mFound = myDoc.findText(true);
l = mFound.length;while (l--) { d = mFound[l].paragraphs.length; while (d--) { currFont = mFound[l].paragraphs[d].bulletChar.bulletsFont; if (currFont.fullName == fontToSearch) { mFound[l].paragraphs[d].lines[0].showText(); alert ("Check this bullet font"); } } }
Jarek