Dear All,
Below is the the code working fine for deletion of a text frame whose label name is “myRemoveFrame”.
Can any one convert this small code into vbscript.
tell application "Adobe InDesign CS4"
tell document 1
try
set myPageItems to page item "myRemoveFrame"
repeat with aFrame in myPageItems
if class of aFrame is text frame then delete aFrame
end repeat
end try
end tell
end tell
I am not pretty much good in vbsctiping. Javascript will also be ok.
Regards,
Poo