<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>ghostfill tips</title>
    <link>http://ghostfilltips.bashasys.info/</link>
    <description>GhostFill document assembly tips and tricks</description>
    <dc:language>en</dc:language>
    <dc:creator>ibb@bashasys.com</dc:creator>
    <dc:rights>Copyright 2007</dc:rights>
    <dc:date>2007-02-22T00:27:01-05:00</dc:date>
    <admin:generatorAgent rdf:resource="http://www.pmachine.com/" />
    

    <item>
      <title>Reduce Size of Embedded Pictures in RTF Templates</title>
      <link>http://ghostfilltips.bashasys.info/index.php/ghostfill/reduce_size_of_embedded_pictures_in_rtf_templates/</link>
      <description>In Microsoft Word there can often be a major size discrepancy between Word files and Rich Text Formatted versions of the same file. This is most often due to how Word RTF handles embedded picture files (such as logos, watermarks, illustrations, etc.) When saved to RTF, the space allocated for the picture can be as much as 20 times the size of the combined size of the document and picture. According to Microsoft, this discrepancy is actually a feature. When a document is exported to RTF, the process creates two files for each image, one is the original image and the other is a Windows Meta File (WMF). The WMF format is designed to describe resizable vector&#45;type drawings &#45; line drawings &#45; and is very efficient for those. However, it is horribly inefficient for storing photographic images pixel by pixel.


There is a registry tweak that can turn off this feature.&amp;nbsp;</description>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>Take the following steps:
</p>
<p>
<li>Close all instances of Word</li>
<li>Use the Windows key to START -> RUN</li>
<li>Type REGEDIT and click OK</li>
<li>In OfficeXP - Find the following Key: HKEY_CURRENT_USER/Software/Microsoft/Office/10.0/Word/Options </li>
<li>In Office2003 - Find the following Key: HKEY_CURRENT_USER/Software/Microsoft/Office/11.0/Word/Options </li>
<li>Right-click in the right-hand pane and choose New -> String Value</li>
<li>Enter the name &#8220;ExportPictureWithMetaFile&#8221; as the new key and click OK</li>
<li>Then double-click on the ExportPictureWithMetaFile and type 0 (zero) for its value and click enter</li>
<li>Close up the registry</li>
<br />
After this, there will be no more expanding files. To deal with existing RTF files, simply open the file and save it to Word format. Then reopen the file and save it back to RTF format. These changes are machine specific and should be made on all machines where the templates are maintained.&nbsp;
</p>]]></content:encoded>
      <dc:date>2007-02-22T00:27:01-05:00</dc:date>
    </item>

    <item>
      <title>Love Your GhostPad</title>
      <link>http://ghostfilltips.bashasys.info/index.php/ghostfill/love_your_ghostpad/</link>
      <description>GhostFill in its last version upgrade included a new feature called GhostPad. GhostPad is both a text editor with full GhostFill fillpoint support and full syntax coloring. It should become part of your arsenal of development tools to tackle problems.</description>
      <dc:subject>General</dc:subject>
      <content:encoded><![CDATA[<p>GhostPad allows you to enjoy the same functions as Microsoft NotePad. It can be used as a Clipboard to copy snippets of text from a Template or Script and store it for reuse. But its real power lies in its support for syntax coloring and the ability to test scripts. Syntax coloring means that all the fillpoints display in blue, comment text in green, and text strings in brown. And, all paired codes are automatically displayed in bold, so that you can tell the KeepBlock and the corresponding EndBlock.
</p>
<p>
GhostPad allows you to test and manipulate text without endangering the template. For complex scripting, you can copy a paragraph from the template and lay it out based on logic decision points. In the GhostPad you can test the assembly. When the script works properly, simply remove the excess hard returns and tabs and paste the paragraph back into your template.
</p>
<p>
Invoking GhostPad From the Start-Menu, START -> ALL PROGRAMS -> GHOSTFILL -> GHOSTPAD
</p>
<p>
To create a desktop or quicklauch shortcut, point to C:/Program Files/GhostWare/GhostPad.exe
</p>
<p>
From GhostFill developer: Right-click to create a new text template. Then right-click on the template and Open the file for editing. We suggest you create a template folder called &#8220;~Test&#8221; or &#8220;~Development&#8221; for your text templates used for testing purposes
</p>
<p>
Useful Tip: Always remember to make a backup copy of your templates before making major text changes.
</p>]]></content:encoded>
      <dc:date>2006-11-15T00:25:00-05:00</dc:date>
    </item>

    <item>
      <title>Ghostfill Create a progress bar</title>
      <link>http://ghostfilltips.bashasys.info/index.php/ghostfill/ghostfill_create_a_progress_bar/</link>
      <description>There are times where you wish to give the users information that progress is being made during an assembly, or some indication of where they are.&amp;nbsp; GhostFill has a progress bar utility. It can be invoked and then controlled by a script. That script is up to you.&amp;nbsp;</description>
      <dc:subject>Scripts</dc:subject>
      <content:encoded><![CDATA[<p>%[x = dialogs.Utils.CreateProgressBar]
<br />
%[x.title = &#8220;This is my Title"]
<br />
%[x.show] 
</p>
<p>
%[x.progress =0.1]
<br />
%[x.progress =0.2]
<br />
%[x.progress =0.3]
<br />
%[x.progress =0.4]
<br />
%[x.progress =0.5]
<br />
%[x.progress =0.6]
<br />
%[x.progress =0.7]
<br />
%[x.progress =0.8]
<br />
%[x.progress =0.9]
<br />
%[x.progress =1] 
<br />
%[x.hide] 
</p>]]></content:encoded>
      <dc:date>2006-08-29T00:22:01-05:00</dc:date>
    </item>

    <item>
      <title>GhostFill Tips Site Goes Live</title>
      <link>http://ghostfilltips.bashasys.info/index.php/ghostfill/ghostfill_tips_site_goes_live/</link>
      <description>Welcome to the new Basha Systems GhostFill Tips site.&amp;nbsp; It is run by our blogging software, but will grow to operate much like any information site&#8230;</description>
      <dc:subject>announcements</dc:subject>
      <content:encoded><![CDATA[<p>As time goes by, we will be adding GhostFill tips and tricks to our database.&nbsp; Eventually, this site will become a quality resource for the GhostFill document assembly community.&nbsp; Also coming soon will be our Time Matters and HotDocs information sites, all run in a very similar manner.&nbsp; If you find yourself becoming lost, the following color schemes should assist:
</p>
<p>
- <b>grey</b> = generic blog containing articles &amp; document assemby topics of interest
<br />
- <b>red</b> = hotdocs specific tips and tricks
<br />
- <b>blue</b> = ghostfill specific tips and tricks
<br />
- <b>tan</b> = time matters specific tips and tricks
</p>
<blockquote><p>quotes in the GhostFill Tips site will appear like this</p></blockquote>
<p>
On the left side of this site, you will notice links to relevant GhostFill resources, as well as a search box, so that you can quickly find what you want from our site (if it is here of course).&nbsp; If you want some light reading regarding document assembly generally, dont forget to check out <a href="http://bashasys.info/" title="Basha Systems Document Assembly &amp; Case Management Blog">our main blog</a> which has many articles regarding the industry generally.
</p>
<p>
We hope you enjoy the new approach.
</p>]]></content:encoded>
      <dc:date>2006-07-26T23:02:00-05:00</dc:date>
    </item>

    
    </channel>
</rss>