Created
June 23, 2014 15:23
-
-
Save surrealroad/effaa4f84d8ba53cecb6 to your computer and use it in GitHub Desktop.
XPath Queries for Final Draft 8+ XML files (.fdx)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// get paragraphs | |
"/FinalDraft/Content/Paragraph" | |
// paragraph text | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/Text" | |
// scene summary | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/SceneProperties/Summary/Paragraph/Text" | |
// paragraph type | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/@Type" | |
// scene number | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/@Number" | |
// scene title | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/SceneProperties/@Title" | |
// page | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/SceneProperties/@Page" | |
// script notes | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/ScriptNote" | |
// script note text | |
"/FinalDraft/Content/Paragraph[" & $paragraphIndex & "]/ScriptNote[" & $scriptnoteIndex & "]//Paragraph/Text" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment