<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community: Message List - RH10 not creating XML files in whxdata</title>
    <link>https://forums.adobe.com/community/robohelp/robohelp_webhelp?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Fri, 10 Oct 2014 07:18:13 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-10-10T07:18:13Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: RH10 not creating XML files in whxdata</title>
      <link>https://forums.adobe.com/message/6811475?tstart=0#6811475</link>
      <description>&lt;!-- [DocumentBodyStart:19ff1b09-9988-43ac-9053-bf5b031c4589] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We have updated the script to recursively convert all RH10/11 js inside whxdata and resource folder in to XML format. The steps to use the script is as follows:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-indent: -0.25in;"&gt;2)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Double click on the script.&lt;/p&gt;&lt;p style="text-indent: -0.25in;"&gt;3)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;nbsp; Provide path of whxdata folder of RH10/11 output. All the js files will be converted to XML and will be placed in My Document\RoboHelp_XML. Now copy all the XML thus created and place it inside&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; whxdata folder of RH10/11 output. If any message to override file is thrown then select not to override. Also, Keep all original js files intact.&lt;/p&gt;&lt;p style="text-indent: -0.25in;"&gt;4)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Provide path of resource folder of RH10/11 output. Resource js will be converted to XML and will be placed in My Document\RoboHelp_XML. Copy this XML and place it inside resource folder of RH11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output. If any message to override file is thrown then select not to override. Keep all original js files intact.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;------------------------------------------------------------------------------------------ --------- Script starts----------------------------------------------------------------------------------- ----------------------------------------------------&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;/p&gt;&lt;p&gt;Set wshshell = CreateObject("WScript.Shell")&lt;/p&gt;&lt;p&gt;Documents = wshShell.SpecialFolders("MyDocuments")&lt;/p&gt;&lt;p&gt;startWriting=false&lt;/p&gt;&lt;p&gt;sCurPath = Documents+"\RoboHelp_XML"&lt;/p&gt;&lt;p&gt;if not objFSO.folderexists(sCurPath) then&lt;/p&gt;&lt;p&gt;&amp;nbsp; objFSO.CreateFolder(sCurPath)&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;set objsCurPath=objFSO.GetFolder(sCurPath)&lt;/p&gt;&lt;p&gt;for each oldFilePath in objsCurPath.Files&lt;/p&gt;&lt;p&gt;&amp;nbsp; objFSO.DeleteFile(oldFilePath)&lt;/p&gt;&lt;p&gt;next&lt;/p&gt;&lt;p&gt;bThrowUI=1&lt;/p&gt;&lt;p&gt;strMyXML=""&lt;/p&gt;&lt;p&gt;message="Provide full folder path where js files are present"+vbcr+"eg. C:\output\whxdata"&lt;/p&gt;&lt;p&gt;title="Robohelp output JS to XML convertor"&lt;/p&gt;&lt;p&gt;if WScript.Arguments.count=1 then&lt;/p&gt;&lt;p&gt;&amp;nbsp; jsFilePath= WScript.Arguments(0)&lt;/p&gt;&lt;p&gt;&amp;nbsp; bThrowUI=0&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;if bThrowUI=1 then&lt;/p&gt;&lt;p&gt;&amp;nbsp; jsFolderPath = InputBox(message, title, new_build,6000 ,5000)&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;if jsFolderPath="" then&lt;/p&gt;&lt;p&gt;&amp;nbsp; msgbox "Action cancelled"&lt;/p&gt;&lt;p&gt;&amp;nbsp; Wscript.quit&lt;/p&gt;&lt;p&gt;else&lt;/p&gt;&lt;p&gt;&amp;nbsp; if not objFSO.FolderExists(jsFolderPath) then &lt;/p&gt;&lt;p&gt;&amp;nbsp; msgbox("Specified JS folder could not be found")&lt;/p&gt;&lt;p&gt;&amp;nbsp; Wscript.quit&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; set jsFolder=objFSO.GetFolder(jsFolderPath)&lt;/p&gt;&lt;p&gt;&amp;nbsp; for each jsFilePath in jsFolder.Files&lt;/p&gt;&lt;p&gt;&amp;nbsp; strMyXML=""&lt;/p&gt;&lt;p&gt;&amp;nbsp; startWriting=false&lt;/p&gt;&lt;p&gt;&amp;nbsp; if lcase(objFSO.getExtensionName(jsFilePath.path))="js" then&lt;/p&gt;&lt;p&gt;&amp;nbsp; xmlfilePath=sCurPath+"\"+Left(jsFilePath.name,Len(jsFilePath.name)-7)+".xml"&lt;/p&gt;&lt;p&gt;&amp;nbsp; if not objFSO.fileexists(xmlfilePath) then&lt;/p&gt;&lt;p&gt;&amp;nbsp; objFSO.CreateTextfile(xmlfilePath)&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; Set objFile = objFSO.OpenTextFile(jsFilePath, 1)&lt;/p&gt;&lt;p&gt;&amp;nbsp; set writefile=objFSO.OpenTextFile(xmlfilePath,2)&lt;/p&gt;&lt;p&gt;&amp;nbsp; Do Until objFile.AtEndOfStream&lt;/p&gt;&lt;p&gt;&amp;nbsp; strCharacters = objFile.Read(1)&lt;/p&gt;&lt;p&gt;&amp;nbsp; bSkip=false&lt;/p&gt;&lt;p&gt;&amp;nbsp; if strcomp(strCharacters,"&amp;lt;")=0 then&lt;/p&gt;&lt;p&gt;&amp;nbsp; startWriting=true&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; if startWriting=true then&lt;/p&gt;&lt;p&gt;&amp;nbsp; if strcomp(strCharacters,"\")=0 then&lt;/p&gt;&lt;p&gt;&amp;nbsp; bSkip=true&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; if strcomp(strCharacters,"&amp;gt;")=0 and NOT bSkip then&lt;/p&gt;&lt;p&gt;&amp;nbsp; strMyXML=strMyXML+strCharacters+vbcrlf&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; if not strcomp(strCharacters,"&amp;gt;")=0 and NOT bSkip then&lt;/p&gt;&lt;p&gt;&amp;nbsp; 'writefile.strCharacters&lt;/p&gt;&lt;p&gt;&amp;nbsp; strMyXML=strMyXML+strCharacters&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; Loop&lt;/p&gt;&lt;p&gt;&amp;nbsp; length=len(strMyXML)&lt;/p&gt;&lt;p&gt;&amp;nbsp; writefile.Writeline Left(strMyXML,length-2)&lt;/p&gt;&lt;p&gt;&amp;nbsp; writefile.close&lt;/p&gt;&lt;p&gt;&amp;nbsp; end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; next&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;if bThrowUI=1 then&lt;/p&gt;&lt;p&gt;msgbox "Required xml file successfully created at "+sCurPath&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;------------------------------------------------------------------------------------------ --------- Script ends------------------------------------------------------------------------------------- --------------------------------------------------&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Thanks and Regards,&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Mohd Sameer.&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Adobe RH team&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:19ff1b09-9988-43ac-9053-bf5b031c4589] --&gt;&lt;img src='/beacon?t=1415927281443' /&gt;</description>
      <pubDate>Fri, 10 Oct 2014 07:18:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6811475?tstart=0#6811475</guid>
      <dc:date>2014-10-10T07:18:13Z</dc:date>
      <clearspace:dateToText>1 month 4 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: RH10 not creating XML files in whxdata</title>
      <link>https://forums.adobe.com/message/6165331?tstart=0#6165331</link>
      <description>&lt;!-- [DocumentBodyStart:1bf10f30-20d5-4246-a844-c011efc99c81] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Since workspaces.acrobat.com is retiring soon, placing the (above) refered file here itself:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;---------------------------------------------------------&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Set objFSO = CreateObject("Scripting.FileSystemObject")&lt;/p&gt;&lt;p&gt;Set wshshell = CreateObject("WScript.Shell")&lt;/p&gt;&lt;p&gt;Documents = wshShell.SpecialFolders("MyDocuments")&lt;/p&gt;&lt;p&gt;startWriting=false&lt;/p&gt;&lt;p&gt;sCurPath = Documents+"\RoboHelp_XML"&lt;/p&gt;&lt;p&gt;if not objFSO.folderexists(sCurPath) then&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;objFSO.CreateFolder(sCurPath)&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;xmlfilePath=sCurPath+"\whidata0.xml"&lt;/p&gt;&lt;p&gt;bThrowUI=1&lt;/p&gt;&lt;p&gt;strMyXML=""&lt;/p&gt;&lt;p&gt;message="Provide full path of whidata0_xml.js file"+vbcr+"eg. C:\output\whidata0_xml.js"&lt;/p&gt;&lt;p&gt;title="Index JS to XML convertor"&lt;/p&gt;&lt;p&gt;if WScript.Arguments.count=1 then&lt;/p&gt;&lt;p&gt;jsFilePath= WScript.Arguments(0)&lt;/p&gt;&lt;p&gt;bThrowUI=0&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;if bThrowUI=1 then&lt;/p&gt;&lt;p&gt;jsFilePath = InputBox(message, title, new_build,6000 ,5000)&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;if jsFilePath="" then&lt;/p&gt;&lt;p&gt; msgbox "Action cancelled"&lt;/p&gt;&lt;p&gt; Wscript.quit&lt;/p&gt;&lt;p&gt; else&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;if not objFSO.fileexists(xmlfilePath) then&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;objFSO.CreateTextfile(xmlfilePath)&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;if not objFSO.FileExists(jsFilePath) then &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;msgbox("Specified JS file could not be found")&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Wscript.quit&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;Set objFile = objFSO.OpenTextFile(jsFilePath, 1)&lt;/p&gt;&lt;p&gt;set writefile=objFSO.OpenTextFile(xmlfilePath,2)&lt;/p&gt;&lt;p&gt;Do Until objFile.AtEndOfStream&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; strCharacters = objFile.Read(1)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;bSkip=false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if strcomp(strCharacters,"&amp;lt;")=0 then&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;startWriting=true&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end if&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if startWriting=true then&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if strcomp(strCharacters,"\")=0 then&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;bSkip=true&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end if&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if strcomp(strCharacters,"&amp;gt;")=0 and NOT bSkip then&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;strMyXML=strMyXML+strCharacters+vbcrlf&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end if&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if not strcomp(strCharacters,"&amp;gt;")=0 and NOT bSkip then&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;'writefile.strCharacters&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;strMyXML=strMyXML+strCharacters&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end if&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end if&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;Loop&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;length=len(strMyXML)&lt;/p&gt;&lt;p&gt;writefile.Writeline Left(strMyXML,length-2)&lt;/p&gt;&lt;p&gt;writefile.close&lt;/p&gt;&lt;p&gt;if bThrowUI=1 then&lt;/p&gt;&lt;p&gt;msgbox "Required xml file successfully created at "+sCurPath&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p&gt;end if&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;---------------------------------------------------------&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;~Amit Agarwal&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1bf10f30-20d5-4246-a844-c011efc99c81] --&gt;</description>
      <pubDate>Fri, 28 Feb 2014 05:12:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6165331?tstart=0#6165331</guid>
      <dc:date>2014-02-28T05:12:12Z</dc:date>
      <clearspace:dateToText>8 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: RH10 not creating XML files in whxdata</title>
      <link>https://forums.adobe.com/message/5831470?tstart=0#5831470</link>
      <description>&lt;!-- [DocumentBodyStart:0add4b77-5b1c-45f3-ae21-7986bf22465f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi MAHorniak,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Yes, for better output experience RoboHelp is creating JS instead of XML. If you still need XML compatible with older RH version, we can provide you a script which can convert index JS file back to XML format. You can download the VBScript file from &lt;a class="jive-link-external-small" href="https://workspaces.acrobat.com/?d=kSpoteg40Fi*Z3*f0QNTxg" rel="nofollow"&gt;https://workspaces.acrobat.com/?d=kSpoteg40Fi*Z3*f0QNTxg&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;How to use:&lt;/span&gt;&lt;/p&gt;&lt;ol style="list-style-type: decimal;"&gt;&lt;li&gt;Download script to some local folder where you have write access.&lt;/li&gt;&lt;li&gt;Run script and give path of whidata0_xml.js which can be found in whxdata folder in your generated WebHelp output.&lt;/li&gt;&lt;li&gt;Click OK to complete the conversion operation&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;&lt;em style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;Result: File named whidata0.xml will be created at &amp;lt;MyDocuments&amp;gt;\RoboHelp_xml.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;The generated XML file is ready for your workflows&lt;/span&gt;&lt;strong&gt;&lt;em style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;br/&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks and Regards,&lt;/p&gt;&lt;p&gt;Mohd Sameer.&lt;/p&gt;&lt;p&gt;Adobe RH team&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0add4b77-5b1c-45f3-ae21-7986bf22465f] --&gt;</description>
      <pubDate>Mon, 11 Nov 2013 05:44:30 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5831470?tstart=0#5831470</guid>
      <dc:date>2013-11-11T05:44:30Z</dc:date>
      <clearspace:dateToText>1 year 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: RH10 not creating XML files in whxdata</title>
      <link>https://forums.adobe.com/message/5728402?tstart=0#5728402</link>
      <description>&lt;!-- [DocumentBodyStart:d1239dde-4458-421b-8506-5e3edc5029f1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Ahhh forgot about that. Yep, the dev team renamed them all from .XML to the .JS. Not sure why.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;You might consider submitting a bug report as this affects you.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.adobe.com/go/wish" rel="nofollow" target="_blank"&gt;http://www.adobe.com/go/wish&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers... Rick &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d1239dde-4458-421b-8506-5e3edc5029f1] --&gt;</description>
      <pubDate>Tue, 01 Oct 2013 15:33:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5728402?tstart=0#5728402</guid>
      <dc:date>2013-10-01T15:33:27Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: RH10 not creating XML files in whxdata</title>
      <link>https://forums.adobe.com/message/5728223?tstart=0#5728223</link>
      <description>&lt;!-- [DocumentBodyStart:e3adfd9d-074c-4b8e-9188-adad06b85c07] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm not sure what practice established using the XML files, but I know that they could not connect the help topics if there was not an index entry for the topic.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have checked all of these settings, and they do not change the output.&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I should clarify, though, that there are files being generated, just not the ones that we would prefer.&amp;nbsp; See the screenshot below.&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5728223-467494/xmlstuff.png"&gt;&lt;img alt="xmlstuff.png" class="jive-image jive-image-thumbnail" height="238" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5728223-467494/450-238/xmlstuff.png" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e3adfd9d-074c-4b8e-9188-adad06b85c07] --&gt;</description>
      <pubDate>Tue, 01 Oct 2013 14:58:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5728223?tstart=0#5728223</guid>
      <dc:date>2013-10-01T14:58:23Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: RH10 not creating XML files in whxdata</title>
      <link>https://forums.adobe.com/message/5728245?tstart=0#5728245</link>
      <description>&lt;!-- [DocumentBodyStart:77c586fe-e6d4-4d3a-a2a3-454e5f9cc74f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi there&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;First off, it always helps to check the basics. Are you certain you are looking at the correct location? &lt;span aria-label="Wink" class="emoticon-inline emoticon_wink" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Assuming you are, look at the properties for the single source layout. Specifically, the Navigation section on the left side and the "Optimize Speed for" option on the right side.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Click the image below for a larger and clearer view&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5728245-467504/tmp1.png"&gt;&lt;img alt="tmp1.png" class="jive-image jive-image-thumbnail" height="422" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5728245-467504/450-422/tmp1.png" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As far as I'm aware, this is the specific setting that determines whether your navigational elements are broken into smaller chunks.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Lastly, I'm a bit confused. To my knowledge, only the navigational elements (TOC, Index, Glossary and Search) are affected and XML data created for these. I'm rather surprised to hear that your development team is somehow using the XML files created for these in order to establish context sensitive help.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers... Rick &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:77c586fe-e6d4-4d3a-a2a3-454e5f9cc74f] --&gt;</description>
      <pubDate>Tue, 01 Oct 2013 14:50:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5728245?tstart=0#5728245</guid>
      <dc:date>2013-10-01T14:50:05Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>RH10 not creating XML files in whxdata</title>
      <link>https://forums.adobe.com/message/5728123?tstart=0#5728123</link>
      <description>&lt;!-- [DocumentBodyStart:bff30524-88ad-4958-bf1f-b9f997a8335d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We converted from RH7 to RH10 earlier this year, and our application uses the XML files in whxdata to connect help buttons to topics.&amp;nbsp; It seems that RH10 is not creating these XML files, which is breaking this functionality.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Some searching indicates that these files should be created when the primary WebHelp layout is being built.&amp;nbsp; I can't find any settings anywhere that indicates whether or not they should be created.&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is this a consequence of the conversion, or does RH10 not create these files anymore?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bff30524-88ad-4958-bf1f-b9f997a8335d] --&gt;</description>
      <pubDate>Tue, 01 Oct 2013 14:34:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/5728123?tstart=0#5728123</guid>
      <dc:date>2013-10-01T14:34:34Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

