Page 1 of 1

Macro to remove all footnotes from selected text

Posted: 2016-06-09 02:48:05
by NisusUser
Has someone already created a macro to remove all footnotes from selected text?

If not, would someone who knows how be willing to do so? I've got a situation where that would save a lot of time. Thank you very much!

Re: Macro to remove all footnotes from selected text

Posted: 2016-06-09 07:21:38
by phspaelti
This apparently works:

Code: Select all

$doc = Document.active
$notes = Note.selectedNotes
$doc.setSelection $notes
Cut

Re: Macro to remove all footnotes from selected text

Posted: 2016-06-09 07:42:48
by NisusUser
Philip,

That macro works great. Thanks so much!