<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div class="elementToProof" style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">
Yeah, the inspect document feature won't do what you want. There are three things you should do:</div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">1. Remove all bookmarks</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">2. Convert fields (cross-references, etc.) to text</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">3. Convert auto-numbering to text.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);"><br>
</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">I should note that the only thing I don't change to plain text are the page numbers in the footer. The
 page numbering is formatted as "Page _ of _". I leave it as a field because when the USPTO breaks the file into the different parts, the auto-numbering of each DOCX file is updated. This the page numbering on the individual abstract Docx file is listed as
 "Page 1 of 1" instead of "Page 35 of 35" because it was the last page of the original Word document (note the APP.TEXT file in Patent Center will show the abstract as Page 35 of 35). Anyway, this is a matter of personal preference.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);"><br>
</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">The first two things above you can do without a macro. The third requires a macro. To remove bookmarks,
 type bookmark in the search bar in Word (top of the window), select "insert a bookmark," and delete all the bookmarks. Be sure the box for hidden bookmarks is checked.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);"><img id="image_1" width="213" height="197" style="width: 213px; height: 197px;" size="10445" contenttype="image/png" data-outlook-trace="F:1|T:1" src="cid:5303b2e0-3773-480e-8908-85904ec12f73"></span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">To convert fields to text, select the text (if you want to convert all fields in the document to text,
 then select all the text in the document using ctrl+a) and with the text selected press ctrl+shift+F9. If you have fields in the header/footers, then you have to do them separately.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);"><br>
</span></div>
<div class="elementToProof"><span style="letter-spacing: normal; font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0); font-weight: 400;">To change the auto-numbering to text (this is the auto-numbering
 of the paragraphs, claims, etc.) you will need to use the following macro:</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">a. Open the document. (You may want to open a copy of the document so that you don't mess up the original
 document.)</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">b. Press Alt+F11. Word displays the VBA Editor.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">c. Press Ctrl+G. This opens the Immediate window. (If you get any other type of dialog box, such as the
 Find and Replace dialog box, then you aren't working in the VBA Editor; you are still in Word. Close the dialog box, make sure the VBA Editor is active, and then repeat this step.)</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">d. Type the following in the Immediate window:</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">    ActiveDocument.Range.ListFormat.ConvertNumbersToText</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">e. Press Enter.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">f. That's it; all the auto-numbered lists in the document will be changed to manual numbering.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">g. If, instead, you want to affect only a limited portion of the document, make sure that portion is
 selected before you start the steps and then use this command in step d:</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">    Selection.Range.ListFormat.ConvertNumbersToText</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);"><br>
</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">I streamlined the above processes by creating macros and assigning them buttons in Word (the image below
 shows the buttons for the Macros). This way I don't have to remember all the stuff above.</span></div>
<div class="elementToProof"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);"><img id="image_0" width="204" height="136" style="width: 204px; height: 136px;" size="6594" contenttype="image/png" data-outlook-trace="F:1|T:1" src="cid:73b2df57-0be4-4ac4-b04f-2f31afc2482c"></span></div>
<div class="elementToProof" style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">
<br>
</div>
<div id="Signature">
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; color: rgb(31, 56, 100);"><b>Scott Nielson</b></span></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; color: black;">801-660-4400</span></p>
</div>
<div id="appendonsend"></div>
<div style="font-family: "Aptos Serif", Aptos_EmbeddedFont, Aptos_MSFontService, serif; font-size: 11pt; color: rgb(0, 0, 0);">
<br>
</div>
<hr style="display: inline-block; width: 98%;">
<div id="divRplyFwdMsg" dir="ltr"><span style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(0, 0, 0);"><b>From:</b> Robert Blaha <rblaha@srtslaw.com><br>
<b>Sent:</b> Thursday, January 18, 2024 3:43 PM<br>
<b>To:</b> For bug reports, feature requests, and tips and tricks about Patent Center. <patentcenter@oppedahl-lists.com><br>
<b>Cc:</b> Scott Nielson <scnielson@outlook.com><br>
<b>Subject:</b> RE: Query - Spec Version for Foreign Filing</span>
<div> </div>
</div>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: Verdana, sans-serif; font-size: 10pt;">Scott,</span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: Verdana, sans-serif; font-size: 10pt;"> </span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: Verdana, sans-serif; font-size: 10pt;">If it is not too much trouble can you explain how you remove all bookmarks, convert auto-numbering and cross-references
 to text before uploading the Word (*.docx) file? I use the built-in “Inspect Document” function of Word and configure the same to remove everything with the exception of headers and footers. Despite taking that step the USPTO continuously reports that it is
 removing bookmarks from my upload file.</span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: Verdana, sans-serif; font-size: 10pt;"> </span></p>
<p style="background-color: white; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;">
<span style="font-family: Verdana, sans-serif; font-size: 10pt; color: black;">Best regards,</span></p>
<p style="background-color: white; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;">
<span style="font-size: 10pt; color: black;"> </span></p>
<p style="background-color: white; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;">
<span style="font-family: Verdana, sans-serif; font-size: 10pt; color: black;">Bob</span></p>
<p style="background-color: white; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;">
<span style="color: black;"> </span></p>
<p style="background-color: white; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;">
<span style="font-family: Verdana, sans-serif; font-size: 10pt; color: black;"><b>Smith Tempel Blaha LLC</b></span></p>
<p style="background-color: white; margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;">
<span style="font-family: Verdana, sans-serif; font-size: 10pt; color: black;">Email:
</span><span style="font-family: Verdana, sans-serif; font-size: 10pt; color: rgb(12, 100, 192);"><u>rblaha@srtslaw.com</u></span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-size: 11pt;"> </span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: Verdana, sans-serif; font-size: 10pt;"> </span></p>
<div style="padding: 3pt 0in 0in; border-top: 1pt solid rgb(225, 225, 225);">
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: Calibri, sans-serif; font-size: 11pt;"><b>From:</b> Patentcenter <patentcenter-bounces@oppedahl-lists.com>
<b>On Behalf Of </b>Scott Nielson via Patentcenter<br>
<b>Sent:</b> Thursday, January 18, 2024 5:35 PM<br>
<b>To:</b> 'users of Patentcenter' <patentcenter@oppedahl-lists.com><br>
<b>Cc:</b> Scott Nielson <scnielson@outlook.com><br>
<b>Subject:</b> Re: [Patentcenter] Query - Spec Version for Foreign Filing</span></p>
</div>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"> </p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: black;">I've been filing Docx applications for quite a while now. My process is to upload the docx file I created,
 download the USPTO scrubbed version, compare the two with the built-in compare function of Word, and if there are no differences, then I file the application. At this point, the comparison rarely reveals any differences in the text (mostly because I preemptively
 remove all bookmarks, convert auto-numbering and cross-references to text, etc., before uploading the Word file).</span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: black;"> </span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: black;">I keep copies of both what I uploaded and the USPTO scrubbed version in the file. The USPTO scrubbed version
 matches the hash on the filing receipt.</span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: black;"> </span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: black;">As for foreign filing, I usually just send the USPTO copy because it has been scrubbed of any metadata.
 However, the text in both files is the same so I don't think it matters.</span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: black;"> </span></p>
<div id="x_Signature">
<p><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: rgb(31, 56, 100);"><b>Scott Nielson</b></span></p>
<p><span style="font-family: "Aptos Serif", serif; font-size: 11pt; color: black;">801-660-4400</span></p>
</div>
<div align="center" style="margin: 0in;">
<hr align="center" size="2" style="width: 98%;">
</div>
<div id="x_divRplyFwdMsg">
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"><span style="font-family: Calibri, sans-serif; font-size: 11pt; color: black;"><b>From:</b> Patentcenter <<a href="mailto:patentcenter-bounces@oppedahl-lists.com" id="OWA28231f29-f7bc-d6ea-cb72-9766c913fed3" class="OWAAutoLink" style="margin-top: 0px; margin-bottom: 0px;">patentcenter-bounces@oppedahl-lists.com</a>>
 on behalf of pbrisky--- via Patentcenter <<a href="mailto:patentcenter@oppedahl-lists.com" id="OWAfb83f472-2698-f31e-0fce-dad1c759605e" class="OWAAutoLink" style="margin-top: 0px; margin-bottom: 0px;">patentcenter@oppedahl-lists.com</a>><br>
<b>Sent:</b> Thursday, January 18, 2024 2:45 PM<br>
<b>To:</b> 'users of Patentcenter' <<a href="mailto:patentcenter@oppedahl-lists.com" id="OWA999849cb-a139-aa22-a806-d1e3d5c39a06" class="OWAAutoLink" style="margin-top: 0px; margin-bottom: 0px;">patentcenter@oppedahl-lists.com</a>><br>
<b>Cc:</b> <a href="mailto:pbrisky@fujitsu.com" id="OWAea3d571d-077a-4ec9-f50f-e8ace3f7afab" class="OWAAutoLink" style="margin-top: 0px; margin-bottom: 0px;">
pbrisky@fujitsu.com</a> <<a href="mailto:pbrisky@fujitsu.com" id="OWAf08fc5d0-e710-635c-5531-bd6f6ae053d2" class="OWAAutoLink" style="margin-top: 0px; margin-bottom: 0px;">pbrisky@fujitsu.com</a>><br>
<b>Subject:</b> [Patentcenter] Query - Spec Version for Foreign Filing</span></p>
<p style="margin: 0in; font-family: Aptos, sans-serif; font-size: 12pt;"> </p>
</div>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;">Hi</p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"> </p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;">Has anyone given any thought, or, do they have a current practice they would like to share about the version of the specification of a DOCX filed case that will be used for foreign filing
 (based on the US filed DOCX case)?</p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"> </p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;">I am interested in hearing people’s thoughts about this …</p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"> </p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"> </p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"> </p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Fujitsu Infinity Pro Italic"; font-size: 10pt; color: black;">Pamela Cei Brisky</span></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Fujitsu Infinity Pro Italic"; font-size: 10pt; color: rgb(89, 89, 89);">Senior Patent Paralegal, Docketing Manager</span></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Fujitsu Infinity Pro Italic"; font-size: 10pt; color: black;"><b>Fujitsu North America, Inc</b>.| Fujitsu Intellectual Property Center</span></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Fujitsu Infinity Pro Italic"; font-size: 10pt; color: rgb(89, 89, 89);"> </span></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Fujitsu Infinity Pro Italic"; font-size: 10pt; color: black;"><a href="mailto:pbrisky@fujitsu.com" id="OWA31a95980-bd45-ad29-6605-ebf11188e692" class="OWAAutoLink" style="color: black; margin-top: 0px; margin-bottom: 0px;">pbrisky@fujitsu.com</a> |571-216-2112</span></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><span style="font-family: "Fujitsu Infinity Pro Italic"; font-size: 10pt; color: black;"> </span></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"><img id="x_x_Picture_x0020_1" style="width: 4.1562in; height: 1.25in; margin-top: 0px; margin-bottom: 0px;" data-outlook-trace="F:1|T:1" src="cid:image001.png@01DA4A35.E846B100"></p>
<p style="margin: 0in; font-family: Calibri, sans-serif; font-size: 11pt;"> </p>
</body>
</html>