<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Attached is an AutoIt script for this.
      AutoIt is a free scripting language for Windows. It's very easy to
      write AutoIt scripts for easy things like typing shortcut keys.
      You have to download and install AutoIt in order to run this. <br>
      <br>
      Below is the script as well, but it has to be in a text file with
      a .AU3 extension in order to run it. You can see how simple it is.
      And I added a lot of comments to make it easier to understand. If
      you need more info, let me know.<br>
      <br>
      Maybe one day I will get into ExtendScript, but AutoIt is so much
      easier and more pleasant to use that it's worth considering.  <br>
      <br>
      Regards,
      <br>
      Shmuel Wolfson
      <br>
      Technical Writer<br>
      052-763-7133<br>
      <br>
      ; this script converts tables to text<br>
      ; find the desired table once, before running the script<br>
      <br>
      Opt("WinTitleMatchMode", 2) ; this sets the title match to be
      anywhere in the window title <br>
      <br>
      Dim $max<br>
      Dim $x = 1<br>
      <br>
      $max = InputBox("","How many tables?","10")<br>
      WinActivate(".fm") ; this activates the window that has .fm in the
      title bar (which may be hidden) <br>
      WinWaitActive(".fm")<br>
      While $x <= $max<br>
          Send("^+f") ; presses CTRL+SHIFT+f to find next <br>
          Sleep(100) ; pause 100 milliseconds - you may need to increase
      this time if you have a slow computer<br>
          Send("!tvc") ; presses ALT+t,v,c to convert the table to text
      <br>
          Sleep(100) ; pause 100 milliseconds - you may need to increase
      this time if you have a slow computer<br>
          $x = $x + 1<br>
      WEnd<br>
      <br>
      ---------------------- <br>
      <br>
      On 26-Nov-13 12:35 PM, Yves Barbion wrote:<br>
    </div>
    <blockquote
cite="mid:CAMa27EzYPzEJoWx1jAV24Jt83Wu8s=QN+pnmsOL2kU+v7GKDXA@mail.gmail.com"
      type="cite">
      <div dir="ltr">
        <div>
          <div>
            <div>
              <div>
                <div>Hi group<br>
                  <br>
                </div>
                I'm looking for a script which does the following:<br>
              </div>
              <br>
              1. Find tables with a specific table tag, for example
              "graphic_table".<br>
            </div>
            2. Convert those tables to paragraphs (row by row).<br>
            <br>
          </div>
          Anyone?<br>
          <br>
        </div>
        Thanks in advance<br>
        <br>
        <div>
          <div>
            <div>
              <div>
                <div>
                  <div>
                    <div>-- <br>
                      Yves Barbion<br>
                      <a moz-do-not-send="true"
                        href="http://www.scripto.nu">www.scripto.nu</a>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      _______________________________________________
      You are currently subscribed to framers as <a class="moz-txt-link-abbreviated" href="mailto:shmuelw1@gmail.com">shmuelw1@gmail.com</a>.
      Send list messages to <a class="moz-txt-link-abbreviated" href="mailto:framers@lists.frameusers.com">framers@lists.frameusers.com</a>.
      To unsubscribe send a blank email to
      <a class="moz-txt-link-abbreviated" href="mailto:framers-unsubscribe@lists.frameusers.com">framers-unsubscribe@lists.frameusers.com</a>
      or visit
      <a class="moz-txt-link-freetext" href="http://lists.frameusers.com/mailman/options/framers/shmuelw1%40gmail.com">http://lists.frameusers.com/mailman/options/framers/shmuelw1%40gmail.com</a>
      Send administrative questions to <a class="moz-txt-link-abbreviated" href="mailto:listadmin@frameusers.com">listadmin@frameusers.com</a>. Visit
      <a class="moz-txt-link-freetext" href="http://www.frameusers.com/">http://www.frameusers.com/</a> for more resources and info.
      <br>
    </blockquote>
    <br>
  </body>
</html>