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

Find untagged text frame in indesign

New Here ,
Mar 08, 2013 Mar 08, 2013

Copy link to clipboard

Copied

Hi,

Can any one give me an idea how to find the untagged text frame in InDesign CS5.

Thanks,

gopal

TOPICS
Scripting

Views

608

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
Enthusiast ,
Mar 08, 2013 Mar 08, 2013

Copy link to clipboard

Copied

LATEST

#target Indesign

var allPageItems = app.activeDocument.allPageItems

checkXMLTag(allPageItems)

function checkXMLTag(aArrayOfItems) {

    for    (var i=0; i<aArrayOfItems.length; i++) {

var pageItem    = aArrayOfItems;

if(!pageItem.associatedXMLElement)

{

    pageItem.select();

    alert('Selection hasn\'t got a markUpTag');

    exit();

    };

   

    }

}

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