├── .gitignore ├── PDXIII_fontBook ├── PDXIII_fontBook.jsx ├── PDXIII_fontBook_standAlone.jsx ├── README.markdown ├── README.md └── fontBookBasic.idml ├── README.markdown ├── _buildDocument.jsx ├── addToPage ├── README.md ├── addPageName2Page.js └── dialogAddTextToPage.jsx ├── add_readme_to_folders.sh ├── basicConstructs ├── 2_111_IDJS_01_varibles.js ├── 2_111_IDJS_02_0_if.js ├── 2_111_IDJS_02_1_ifElse.js ├── 2_111_IDJS_03_for.js ├── 2_111_IDJS_04_while.js ├── 2_111_IDJS_05_switch.js ├── 2_111_IDJS_06_try.js ├── 2_111_IDJS_07_00_function.js ├── 2_111_IDJS_07_01_functionGetBoundsOrColumns.js ├── 2_111_IDJS_08_placeTextFile.js ├── 2_111_IDJS_09_selection.js ├── 2_111_IDJS_10_os.js ├── 2_111_IDJS_11_xmlImport.js ├── README.markdown └── README.md ├── basicTextTransform ├── CreateLibrary01.scpt ├── README.md ├── applyCharStyleTo_lastline_selection.jsx ├── applyOtherStyles.jsx ├── changeCharAndParStyle.jsx ├── createList.jsx ├── exchangeParStyle.jsx ├── findAndChange.jsx ├── findChangeParStyles.jsx ├── firstRun.jsx ├── makeUpperCaseAndSortSelection.jsx ├── replaceCharStyle.jsx ├── replaceParagraphStyle.jsx └── testRun.jsx ├── book ├── README.md ├── buildBookWithDocs.jsx ├── docsOfBook_ToIDML.jsx └── footnotes-2-paragraphs.jsx ├── colors ├── README.md ├── convertColors.jsx └── workingWithColors.jsx ├── export ├── README.md ├── docToIDML.jsx ├── exportToJPG.js └── export_AllFirstPagesTo_PDF.js ├── fontify ├── 08_fontify.jsx ├── README.md └── makeSelectionFonty.jsx ├── grafical ├── README.md ├── circles.js ├── circles_ftb.js ├── circles_rot.js ├── connected_nodes.jsx ├── imageOverview.jsx └── selctionLines.js ├── greatPower.jsx ├── import ├── README.md ├── load_txt.js └── theFolder │ └── test.txt ├── includeRandomQuote ├── README.md ├── douglasAdamsQuote.js ├── homerQuote.js ├── homerQuoteReturnArray.js └── includeScript.js ├── javascript class ├── FileWriter.jsx ├── README.md ├── class.markdown └── runClass.jsx ├── license ├── README.md └── gpl.txt ├── meta ├── README.md └── inspectProperties.jsx ├── obj styles ├── README.md └── objStyle2Json.jsx ├── pages ├── README.md ├── array-to-charts.jsx └── facingPages.jsx ├── par styles ├── README.md ├── parStyle2Json.jsx └── parstylesFromJson.jsx ├── scriptLabels ├── README.md └── lockScriptLabeldTextFrame.jsx ├── scriptUI ├── README.md ├── resourceString_UI.js ├── simpleUI_02.js ├── simpleUI_03.js ├── simplestUI.js └── xample_basicPanel.jsx ├── targetengine ├── README.md ├── targetengine_script01.jsx └── targetengine_script02.jsx ├── textFrames ├── README.md ├── circles.jsx ├── quickAdjustTXTFrame.jsx ├── splitTextFrame.jsx └── textFramesFromParagraph.jsx ├── writeData.jsx └── xtract ├── README.md ├── extractImages_fromText.jsx ├── fc_queries ├── FFF_filename.xml └── FFF_xtrct_img.xml ├── gpl.txt ├── image_files ├── feet.jpg ├── fly.jpg ├── frog.jpg ├── hammock.jpg ├── head.jpg ├── myFile.jpg ├── sky.jpg ├── theDoctor.jpg ├── twoFace.jpg └── window.jpg ├── install_findChange_queries.txt └── testDoc_xtrctImg.idml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/.gitignore -------------------------------------------------------------------------------- /PDXIII_fontBook/PDXIII_fontBook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/PDXIII_fontBook/PDXIII_fontBook.jsx -------------------------------------------------------------------------------- /PDXIII_fontBook/PDXIII_fontBook_standAlone.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/PDXIII_fontBook/PDXIII_fontBook_standAlone.jsx -------------------------------------------------------------------------------- /PDXIII_fontBook/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/PDXIII_fontBook/README.markdown -------------------------------------------------------------------------------- /PDXIII_fontBook/README.md: -------------------------------------------------------------------------------- 1 | PDXIII_fontBook 2 | -------------------------------------------------------------------------------- /PDXIII_fontBook/fontBookBasic.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/PDXIII_fontBook/fontBookBasic.idml -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/README.markdown -------------------------------------------------------------------------------- /_buildDocument.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/_buildDocument.jsx -------------------------------------------------------------------------------- /addToPage/README.md: -------------------------------------------------------------------------------- 1 | addToPage 2 | -------------------------------------------------------------------------------- /addToPage/addPageName2Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/addToPage/addPageName2Page.js -------------------------------------------------------------------------------- /addToPage/dialogAddTextToPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/addToPage/dialogAddTextToPage.jsx -------------------------------------------------------------------------------- /add_readme_to_folders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/add_readme_to_folders.sh -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_01_varibles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_01_varibles.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_02_0_if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_02_0_if.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_02_1_ifElse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_02_1_ifElse.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_03_for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_03_for.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_04_while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_04_while.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_05_switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_05_switch.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_06_try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_06_try.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_07_00_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_07_00_function.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_07_01_functionGetBoundsOrColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_07_01_functionGetBoundsOrColumns.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_08_placeTextFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_08_placeTextFile.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_09_selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_09_selection.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_10_os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_10_os.js -------------------------------------------------------------------------------- /basicConstructs/2_111_IDJS_11_xmlImport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/2_111_IDJS_11_xmlImport.js -------------------------------------------------------------------------------- /basicConstructs/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicConstructs/README.markdown -------------------------------------------------------------------------------- /basicConstructs/README.md: -------------------------------------------------------------------------------- 1 | basicConstructs 2 | -------------------------------------------------------------------------------- /basicTextTransform/CreateLibrary01.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/CreateLibrary01.scpt -------------------------------------------------------------------------------- /basicTextTransform/README.md: -------------------------------------------------------------------------------- 1 | basicTextTransform 2 | -------------------------------------------------------------------------------- /basicTextTransform/applyCharStyleTo_lastline_selection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/applyCharStyleTo_lastline_selection.jsx -------------------------------------------------------------------------------- /basicTextTransform/applyOtherStyles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/applyOtherStyles.jsx -------------------------------------------------------------------------------- /basicTextTransform/changeCharAndParStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/changeCharAndParStyle.jsx -------------------------------------------------------------------------------- /basicTextTransform/createList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/createList.jsx -------------------------------------------------------------------------------- /basicTextTransform/exchangeParStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/exchangeParStyle.jsx -------------------------------------------------------------------------------- /basicTextTransform/findAndChange.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/findAndChange.jsx -------------------------------------------------------------------------------- /basicTextTransform/findChangeParStyles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/findChangeParStyles.jsx -------------------------------------------------------------------------------- /basicTextTransform/firstRun.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/firstRun.jsx -------------------------------------------------------------------------------- /basicTextTransform/makeUpperCaseAndSortSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/makeUpperCaseAndSortSelection.jsx -------------------------------------------------------------------------------- /basicTextTransform/replaceCharStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/replaceCharStyle.jsx -------------------------------------------------------------------------------- /basicTextTransform/replaceParagraphStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/replaceParagraphStyle.jsx -------------------------------------------------------------------------------- /basicTextTransform/testRun.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/basicTextTransform/testRun.jsx -------------------------------------------------------------------------------- /book/README.md: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/buildBookWithDocs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/book/buildBookWithDocs.jsx -------------------------------------------------------------------------------- /book/docsOfBook_ToIDML.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/book/docsOfBook_ToIDML.jsx -------------------------------------------------------------------------------- /book/footnotes-2-paragraphs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/book/footnotes-2-paragraphs.jsx -------------------------------------------------------------------------------- /colors/README.md: -------------------------------------------------------------------------------- 1 | colors 2 | -------------------------------------------------------------------------------- /colors/convertColors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/colors/convertColors.jsx -------------------------------------------------------------------------------- /colors/workingWithColors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/colors/workingWithColors.jsx -------------------------------------------------------------------------------- /export/README.md: -------------------------------------------------------------------------------- 1 | export 2 | -------------------------------------------------------------------------------- /export/docToIDML.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/export/docToIDML.jsx -------------------------------------------------------------------------------- /export/exportToJPG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/export/exportToJPG.js -------------------------------------------------------------------------------- /export/export_AllFirstPagesTo_PDF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/export/export_AllFirstPagesTo_PDF.js -------------------------------------------------------------------------------- /fontify/08_fontify.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/fontify/08_fontify.jsx -------------------------------------------------------------------------------- /fontify/README.md: -------------------------------------------------------------------------------- 1 | fontify 2 | -------------------------------------------------------------------------------- /fontify/makeSelectionFonty.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/fontify/makeSelectionFonty.jsx -------------------------------------------------------------------------------- /grafical/README.md: -------------------------------------------------------------------------------- 1 | grafical 2 | -------------------------------------------------------------------------------- /grafical/circles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/grafical/circles.js -------------------------------------------------------------------------------- /grafical/circles_ftb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/grafical/circles_ftb.js -------------------------------------------------------------------------------- /grafical/circles_rot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/grafical/circles_rot.js -------------------------------------------------------------------------------- /grafical/connected_nodes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/grafical/connected_nodes.jsx -------------------------------------------------------------------------------- /grafical/imageOverview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/grafical/imageOverview.jsx -------------------------------------------------------------------------------- /grafical/selctionLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/grafical/selctionLines.js -------------------------------------------------------------------------------- /greatPower.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/greatPower.jsx -------------------------------------------------------------------------------- /import/README.md: -------------------------------------------------------------------------------- 1 | import 2 | -------------------------------------------------------------------------------- /import/load_txt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/import/load_txt.js -------------------------------------------------------------------------------- /import/theFolder/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/import/theFolder/test.txt -------------------------------------------------------------------------------- /includeRandomQuote/README.md: -------------------------------------------------------------------------------- 1 | includeRandomQuote 2 | -------------------------------------------------------------------------------- /includeRandomQuote/douglasAdamsQuote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/includeRandomQuote/douglasAdamsQuote.js -------------------------------------------------------------------------------- /includeRandomQuote/homerQuote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/includeRandomQuote/homerQuote.js -------------------------------------------------------------------------------- /includeRandomQuote/homerQuoteReturnArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/includeRandomQuote/homerQuoteReturnArray.js -------------------------------------------------------------------------------- /includeRandomQuote/includeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/includeRandomQuote/includeScript.js -------------------------------------------------------------------------------- /javascript class/FileWriter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/javascript class/FileWriter.jsx -------------------------------------------------------------------------------- /javascript class/README.md: -------------------------------------------------------------------------------- 1 | javascript class 2 | -------------------------------------------------------------------------------- /javascript class/class.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/javascript class/class.markdown -------------------------------------------------------------------------------- /javascript class/runClass.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/javascript class/runClass.jsx -------------------------------------------------------------------------------- /license/README.md: -------------------------------------------------------------------------------- 1 | license 2 | -------------------------------------------------------------------------------- /license/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/license/gpl.txt -------------------------------------------------------------------------------- /meta/README.md: -------------------------------------------------------------------------------- 1 | meta 2 | -------------------------------------------------------------------------------- /meta/inspectProperties.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/meta/inspectProperties.jsx -------------------------------------------------------------------------------- /obj styles/README.md: -------------------------------------------------------------------------------- 1 | obj styles 2 | -------------------------------------------------------------------------------- /obj styles/objStyle2Json.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/obj styles/objStyle2Json.jsx -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- 1 | pages 2 | -------------------------------------------------------------------------------- /pages/array-to-charts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/pages/array-to-charts.jsx -------------------------------------------------------------------------------- /pages/facingPages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/pages/facingPages.jsx -------------------------------------------------------------------------------- /par styles/README.md: -------------------------------------------------------------------------------- 1 | par styles 2 | -------------------------------------------------------------------------------- /par styles/parStyle2Json.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/par styles/parStyle2Json.jsx -------------------------------------------------------------------------------- /par styles/parstylesFromJson.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/par styles/parstylesFromJson.jsx -------------------------------------------------------------------------------- /scriptLabels/README.md: -------------------------------------------------------------------------------- 1 | scriptLabels 2 | -------------------------------------------------------------------------------- /scriptLabels/lockScriptLabeldTextFrame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/scriptLabels/lockScriptLabeldTextFrame.jsx -------------------------------------------------------------------------------- /scriptUI/README.md: -------------------------------------------------------------------------------- 1 | scriptUI 2 | -------------------------------------------------------------------------------- /scriptUI/resourceString_UI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/scriptUI/resourceString_UI.js -------------------------------------------------------------------------------- /scriptUI/simpleUI_02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/scriptUI/simpleUI_02.js -------------------------------------------------------------------------------- /scriptUI/simpleUI_03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/scriptUI/simpleUI_03.js -------------------------------------------------------------------------------- /scriptUI/simplestUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/scriptUI/simplestUI.js -------------------------------------------------------------------------------- /scriptUI/xample_basicPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/scriptUI/xample_basicPanel.jsx -------------------------------------------------------------------------------- /targetengine/README.md: -------------------------------------------------------------------------------- 1 | targetengine 2 | -------------------------------------------------------------------------------- /targetengine/targetengine_script01.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/targetengine/targetengine_script01.jsx -------------------------------------------------------------------------------- /targetengine/targetengine_script02.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/targetengine/targetengine_script02.jsx -------------------------------------------------------------------------------- /textFrames/README.md: -------------------------------------------------------------------------------- 1 | textFrames 2 | -------------------------------------------------------------------------------- /textFrames/circles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/textFrames/circles.jsx -------------------------------------------------------------------------------- /textFrames/quickAdjustTXTFrame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/textFrames/quickAdjustTXTFrame.jsx -------------------------------------------------------------------------------- /textFrames/splitTextFrame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/textFrames/splitTextFrame.jsx -------------------------------------------------------------------------------- /textFrames/textFramesFromParagraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/textFrames/textFramesFromParagraph.jsx -------------------------------------------------------------------------------- /writeData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/writeData.jsx -------------------------------------------------------------------------------- /xtract/README.md: -------------------------------------------------------------------------------- 1 | xtract 2 | -------------------------------------------------------------------------------- /xtract/extractImages_fromText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/extractImages_fromText.jsx -------------------------------------------------------------------------------- /xtract/fc_queries/FFF_filename.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/fc_queries/FFF_filename.xml -------------------------------------------------------------------------------- /xtract/fc_queries/FFF_xtrct_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/fc_queries/FFF_xtrct_img.xml -------------------------------------------------------------------------------- /xtract/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/gpl.txt -------------------------------------------------------------------------------- /xtract/image_files/feet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/feet.jpg -------------------------------------------------------------------------------- /xtract/image_files/fly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/fly.jpg -------------------------------------------------------------------------------- /xtract/image_files/frog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/frog.jpg -------------------------------------------------------------------------------- /xtract/image_files/hammock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/hammock.jpg -------------------------------------------------------------------------------- /xtract/image_files/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/head.jpg -------------------------------------------------------------------------------- /xtract/image_files/myFile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/myFile.jpg -------------------------------------------------------------------------------- /xtract/image_files/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/sky.jpg -------------------------------------------------------------------------------- /xtract/image_files/theDoctor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/theDoctor.jpg -------------------------------------------------------------------------------- /xtract/image_files/twoFace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/twoFace.jpg -------------------------------------------------------------------------------- /xtract/image_files/window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/image_files/window.jpg -------------------------------------------------------------------------------- /xtract/install_findChange_queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/install_findChange_queries.txt -------------------------------------------------------------------------------- /xtract/testDoc_xtrctImg.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ff6347/IDSnippets/HEAD/xtract/testDoc_xtrctImg.idml --------------------------------------------------------------------------------