<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Indigo Rose Software</title>
	<atom:link href="http://www.indigorose.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.indigorose.com</link>
	<description>Tools for Professional Software Developers</description>
	<lastBuildDate>Wed, 13 Jan 2010 21:38:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using a Binary Patch Maker to Create Secure Software Patches</title>
		<link>http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/</link>
		<comments>http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 19:50:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[binary patching]]></category>
		<category><![CDATA[patch maker]]></category>
		<category><![CDATA[software patches]]></category>
		<category><![CDATA[Visual Patch]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=2049</guid>
		<description><![CDATA[Once a software product has been released into the field, it&#8217;s inevitable that software development companies will want to fix problems, add features, solve unforeseen compatibility issues, and fix security holes. That&#8217;s why a binary patch maker belongs in the software development tool kit of every programmer.
Benefits of Patching
The role of patches in the software [...]


More Information:<ol><li><a href='http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/' rel='bookmark' title='Permanent Link: Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications'>Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications</a> <small>Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times...</small></li><li><a href='http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/' rel='bookmark' title='Permanent Link: Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook'>Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook</a> <small>So, you&#8217;ve created a great new software application for the...</small></li><li><a href='http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/' rel='bookmark' title='Permanent Link: Choosing an AutoPlay Multimedia Software Development Tool'>Choosing an AutoPlay Multimedia Software Development Tool</a> <small>Getting started developing multimedia software applications can seem intimidating at...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Once a software product has been released into the field, it&#8217;s inevitable that software development companies will want to fix problems, add features, solve unforeseen compatibility issues, and fix security holes. That&#8217;s why a binary patch maker belongs in the <a href="http://www.indigorose.com">software development tool</a> kit of every programmer.</p>
<h3>Benefits of Patching</h3>
<p>The role of patches in the software deployment life-cycle is to get already installed software up to date after it becomes outdated. Patching technology offers numerous benefits over simply redistributing new versions of the original software in whole form.</p>
<p><strong>Smaller file size</strong></p>
<p>Because they only contain the data that has changed from one version to another, patches can be much smaller than a full software installer needs to be. Especially in situations where large data files are involved, the savings are often dramatic-patches that are less than 1% of the original file sizes are possible.</p>
<p><strong>Reduced bandwidth</strong></p>
<p>Smaller file sizes translate into reduced bandwidth costs, and reducing the amount of traffic leaves more bandwidth for other services.</p>
<p><strong>Faster transmission speeds</strong></p>
<p>Having less data to transmit means that updates can be sent and received faster, which means less time is spent waiting for updates.</p>
<p><strong>Security</strong></p>
<p>The best way to protect information during transmission is to never transmit it in the first place. By only transmitting the data that has changed, patches reduce the risk of third-party interception. Even if some hypothetical future technology made it possible to &#8220;crack&#8221; the encryption methods used to package the changes, the unchanged data would remain safe.</p>
<p><strong>Integrity</strong></p>
<p>A patch can&#8217;t update something that isn&#8217;t there. If a user doesn&#8217;t already have your software installed, they won&#8217;t be able to apply the patch. And if someone is using a modified version of a file, that file won&#8217;t be updated-unless you expressly permit it when you design your patch.</p>
<h3>Patching Methods</h3>
<p>There are two basic methods that can be used to update a file: binary patching, and whole-file patching.</p>
<p><strong>Binary Patching</strong></p>
<p><a href="http://www.indigorose.com/products/visual-patch/">Binary patching</a> or &#8220;delta compression&#8221; involves analyzing two versions of a file in order to extract only the data that has changed. The same changes can then be applied to any file that matches the old version, in order to &#8220;transform&#8221; it into the new version.</p>
<p>Creating a binary patch involves performing a byte-by-byte comparison between the original file and the new file, and then encoding the differences into a difference file. Each difference file contains the actual bytes that are different in the new file, along with a number of instructions that describe which bytes need to change, and which bytes are the same. This information is said to be encoded into the difference file.</p>
<p>Tip: The term &#8220;difference file&#8221; is often shortened to &#8220;diff file&#8221; or just &#8220;diff.&#8221;</p>
<p>When the patch is applied, the difference file is decoded, and the instructions are used to build the new file by copying the &#8220;unchanged&#8221; data out of the old file, along with the &#8220;changed&#8221; data that was encoded into the difference file.</p>
<p>For example, given an old file &#8220;A&#8221; and a new file &#8220;B,&#8221; a binary patching engine would compare A to B and then produce a difference file; let&#8217;s call it &#8220;AB.diff.&#8221; Once the difference file is created, you can use it to create the B file from any file that matches the A file. In fact, the binary patching engine could recreate B using A and AB.diff.</p>
<p>Because binary patching only stores the parts that have changed, the difference files can be very small-often less than one percent of the new file&#8217;s size. The size of the difference file depends entirely on how much data has changed between the two versions.</p>
<p>Each difference file can update a single, specific version of a file to another single, specific version of that file. The encoded instructions in the difference file are only valid for a file that is a perfect match of the original source file. Note that binary patching cannot be used to update a file if it has been modified in any way.</p>
<p>For patches that need to update multiple files, the patch executable will need to contain a separate difference file for each file that needs to be updated. So, for example, to update a single file from version 1.0 or 1.1 to version 1.2, using a single patch executable, it would need to contain one difference file to go from 1.0 to 1.2, and another to go from 1.1 to 1.2.</p>
<p>In most cases, the difference files are so small that you can fit a lot of versions into a single patch executable and still use less space than you would by just including the whole file, as in whole-file patching (see below).</p>
<p>Note: An advanced <a href="http://www.indigorose.com/products/visual-patch/">patch maker</a> like Indigo Rose&#8217;s Visual Patch will automatically switch from binary to whole-file patching on a file-by-file basis whenever the total size of all the difference files surpasses the size of the whole file.</p>
<p><strong>Whole-File Patching</strong></p>
<p>Whole-file patching operates on a different principle. Instead of only containing the parts that have changed (as binary patches do), whole-file patches just copy the entire file. The &#8220;patch&#8221; is just a copy of the new version.</p>
<p>Whole-file patches can be faster to apply, because they don&#8217;t have to search through the original file in order to copy the parts that haven&#8217;t changed to the new version. They just overwrite the old file with the new one. The downside, of course, is that whole-file patches tend to be much larger than binary patches.</p>
<p>There are, however, two situations where whole-file patches can actually be smaller: when creating a single patch file that is able to update many different versions, and when the files being patched are too dissimilar.</p>
<p>A smart patch maker like <a href="http://www.indigorose.com/products/visual-patch">Visual Patch</a> chooses the patching method that produces the best results. It automatically switches between binary patching and whole-file patching on a file-by-file basis in order to produces the smallest patch possible for your project.</p>
<h3>About the Author</h3>
<p>For more information on choosing a binary patch maker that creates compact and secure software updates, visit <a href="http://www.indigorose.com/products/visual-patch">http://www.indigorose.com/products/visual-patch/</a> and download a free trial version of Visual Patch.</p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/' rel='bookmark' title='Permanent Link: Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications'>Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications</a> <small>Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times...</small></li><li><a href='http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/' rel='bookmark' title='Permanent Link: Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook'>Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook</a> <small>So, you&#8217;ve created a great new software application for the...</small></li><li><a href='http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/' rel='bookmark' title='Permanent Link: Choosing an AutoPlay Multimedia Software Development Tool'>Choosing an AutoPlay Multimedia Software Development Tool</a> <small>Getting started developing multimedia software applications can seem intimidating at...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications</title>
		<link>http://www.indigorose.com/press-releases/trueupdate-3-5-brings-automated-software-updating-to-microsoft-windows-7-applications/</link>
		<comments>http://www.indigorose.com/press-releases/trueupdate-3-5-brings-automated-software-updating-to-microsoft-windows-7-applications/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 21:46:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[press release]]></category>
		<category><![CDATA[software updating]]></category>
		<category><![CDATA[TrueUpdate]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=2038</guid>
		<description><![CDATA[Software Development Tool Simplifies Adding a "Check for Update" Feature to Software Products


More Information:<ol><li><a href='http://www.indigorose.com/press-releases/multimedia-software-development-with-autoplay-media-studio-7-5/' rel='bookmark' title='Permanent Link: AutoPlay Media Studio 7.5 Brings Visual Multimedia Software Development to Windows 7'>AutoPlay Media Studio 7.5 Brings Visual Multimedia Software Development to Windows 7</a> <small>Indigo Rose Software announces the immediate availability of AutoPlay Media...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled'>Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled</a> <small>Indigo Rose Software, developers of the award-winning Setup Factory and...</small></li><li><a href='http://www.indigorose.com/press-releases/create-windows-7-compatible-software-installers-with-setup-factory-8-2/' rel='bookmark' title='Permanent Link: Setup Factory 8.2 Creates Windows 7 Compatible Software Installers'>Setup Factory 8.2 Creates Windows 7 Compatible Software Installers</a> <small>Indigo Rose Software today announced the launch of Setup Factory...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.indigorose.com">Indigo Rose Software</a> today announced the availability of <a href="http://www.indigorose.com/products/trueupdate/">TrueUpdate 3.5</a> with full support for Microsoft Windows 7. TrueUpdate is a software development tool that allows programmers to easily integrate an automated &#8220;check for update&#8221; feature into their software applications. Using TrueUpdate, software developers can now quickly ensure that all of their customers and clients receive the latest point release of a software product, no matter what version of Microsoft Windows they are using.</p>
<p>TrueUpdate enabled software works by contacting an update server, and automatically determining if it is out-of-date according to a developer specified rules. Once it has been determined that an update is required, the TrueUpdate client software automatically downloads and applies the update using standard Internet or LAN protocols. Unlike competing products that lock developers into a hosted service or require proprietary hardware/software systems, TrueUpdate features a compact client executable that interfaces with any standard web server (Windows, Linux, etc.). Additionally, it does not use the .NET framework or require installation of any 3rd party dependencies.</p>
<p>&#8220;Making certain that every client system is running the most recent software release can be a daunting task, especially when balancing rapid product cycles, security vulnerabilities and short turnaround times,&#8221; said Colin Adams, President of Indigo Rose Software Design Corporation. &#8220;With TrueUpdate 3.5, we&#8217;ve taken the guesswork out of the equation and made it easier than ever for development teams to eliminate legacy technical support issues, reduce user frustration and ensure the latest software features have been deployed. It&#8217;s all about improving customer and client satisfaction.&#8221;</p>
<p>By easily integrating into software applications, TrueUpdate offers nearly unlimited flexibility and customization options. It works with any <a href="http://www.indigorose.com/products/setup-factory/">software installation tool</a> or <a href="http://www.indigorose.com/products/visual-patch/">binary patch maker</a>, including Indigo Rose&#8217;s Setup Factory and Visual Patch products. The TrueUpdate client executable is compatible with Microsoft Windows 95 straight through to Microsoft Windows 7.</p>
<p>&#8220;Our ISV community is alive with innovation, and we&#8217;re committed to helping our partners drive the next generation of software experiences,&#8221; said Ross Brown, Vice President of ISV and Solutions Partners for the Worldwide Partner Group at Microsoft. &#8220;Adding compatibility for the latest Microsoft operating systems helps ISVs to stay ahead of the competition and give their customers access to cutting-edge technologies.&#8221;</p>
<p>Features include automatic firewall and proxy server negotiation, silent updating, a multilingual user interface, a compact and standalone client application, customizable dialogs and much more. An easy-to-use Project Wizard walks software developers through the system by helping to identify file versions, configure patch download locations and then uploading the update information to the server.</p>
<p>The software also incorporates an easy-to-use scripting language featuring everything from loops and conditional branching to functions, variables and associative arrays. Programmers can also take advantage of hundreds of high-level functions for making registry changes, executing programs, starting and stopping services, reading ZIP files, parsing XML data and interacting with Web scripts and other advanced tasks.</p>
<p>TrueUpdate 3.5 sells for $395 (US$) per developer or $995 for the Five Developer Team Pack. It can be purchased through all major software development tools resellers, or directly from Indigo Rose Software at <a href="http://www.indigorose.com">http://www.indigorose.com</a>. A free 30-day trial download is also available from the company&#8217;s website.</p>
<p><strong>About Indigo Rose Software Corporation</strong><br />
Indigo Rose provides software developers with tools to manage the complete software deployment life cycle. From multimedia software development and CD/DVD autorun menu systems with AutoPlay Media Studio and Autorun MAX, to automated software installation, updating and patching solutions with MSI Factory, Setup Factory, TrueUpdate and Visual Patch, Indigo Rose offers an array of integrated solutions. Privately held, Indigo Rose has been developing innovative software development tools since 1991 that are used by over 20,000 corporate, government and ISV software developers around the world. Indigo Rose is headquartered in Winnipeg, Canada, and may be found on the Internet at <a href="http://www.indigorose.com">http://www.indigorose.com</a>.</p>
<p style="text-align: center;">###</p>
<p>TrueUpdate is a registered trademark of Indigo Rose Software Design Corporation.  All other trade names and trademarks are the property of their respective owners.</p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/press-releases/multimedia-software-development-with-autoplay-media-studio-7-5/' rel='bookmark' title='Permanent Link: AutoPlay Media Studio 7.5 Brings Visual Multimedia Software Development to Windows 7'>AutoPlay Media Studio 7.5 Brings Visual Multimedia Software Development to Windows 7</a> <small>Indigo Rose Software announces the immediate availability of AutoPlay Media...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled'>Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled</a> <small>Indigo Rose Software, developers of the award-winning Setup Factory and...</small></li><li><a href='http://www.indigorose.com/press-releases/create-windows-7-compatible-software-installers-with-setup-factory-8-2/' rel='bookmark' title='Permanent Link: Setup Factory 8.2 Creates Windows 7 Compatible Software Installers'>Setup Factory 8.2 Creates Windows 7 Compatible Software Installers</a> <small>Indigo Rose Software today announced the launch of Setup Factory...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/press-releases/trueupdate-3-5-brings-automated-software-updating-to-microsoft-windows-7-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook</title>
		<link>http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/</link>
		<comments>http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 18:38:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=2026</guid>
		<description><![CDATA[So, you&#8217;ve created a great new software application for the Microsoft Windows operating system. All you need to do now is package it up as a setup.exe file and you can finally head out on vacation. But hold on there partner! Even before you choose your install maker tool, your first step to creating an [...]


More Information:<ol><li><a href='http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/' rel='bookmark' title='Permanent Link: Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications'>Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications</a> <small>Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times...</small></li><li><a href='http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/' rel='bookmark' title='Permanent Link: Choosing an AutoPlay Multimedia Software Development Tool'>Choosing an AutoPlay Multimedia Software Development Tool</a> <small>Getting started developing multimedia software applications can seem intimidating at...</small></li><li><a href='http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/' rel='bookmark' title='Permanent Link: Using a Binary Patch Maker to Create Secure Software Patches'>Using a Binary Patch Maker to Create Secure Software Patches</a> <small>Once a software product has been released into the field,...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>So, you&#8217;ve created a great new software application for the Microsoft Windows operating system. All you need to do now is package it up as a setup.exe file and you can finally head out on vacation. But hold on there partner! Even before you choose your install maker tool, your first step to creating an installer for your Windows application is to plan it out. In fact, planning your installation is one of the most important steps in designing a professional software installer. Knowing what your setup program needs to accomplish in advance will give you a clear goal to aim for and a solid plan to follow.</p>
<p>There are several things you need to know in order to create a software installer:</p>
<ul>
<li>What files do you need to distribute?</li>
<li>Where do your files need to be installed?</li>
<li>What system changes need to be made?</li>
<li>What information do you need from the user?</li>
</ul>
<p>This article will help you collect the information you need to answer these questions as quickly and accurately as possible. Once you have this information collected, it&#8217;ll be a snap to build your installer. Of course I have a suggestion as to which installer builder software you should use as well, but you&#8217;ll have to wait until the end of the article for that&#8230;</p>
<p><strong>1. What Files Do You Need to Distribute?</strong></p>
<p>The first step in preparing your installation is to determine exactly what files your software application requires for proper operation. There are four basic types of files that you may need to distribute: program files, configuration files, operating system components, and shared application resources.</p>
<p><em>Program Files</em><br />
Program files are the &#8220;main files&#8221; of your application. These files are essential to your application and are only useful in the context of your application. They can be executables, help files, documents, templates, or any other data files that your application requires. Program files usually make up the bulk of your software.</p>
<p><em>Configuration Files</em><br />
Configuration files are used to store startup options, user settings, and other configuration options for your software. Information can be read from and written to these files during the normal operation of your application. These files are often referred to as &#8220;config&#8221; files, and come in many different formats, from traditional &#8220;INI&#8221; files (which adopt the same internal structure as Windows .ini files) to modern XML files.</p>
<p><em>Operating System Components</em><br />
These files are usually included with the Windows operating system, but you may want to distribute the newest versions of certain files, or you may have developed custom system files of your own. These files are generally DLLs, OCX components, or hardware drivers like SYS files and VxDs.</p>
<p><em>Shared Application Resources</em><br />
These are files that may be shared by more than one application, such as ActiveX controls, OCX components, and DLL files. Some of the files that you need to distribute will be obvious, such as the main executable and help files. Others may be less apparent, such as DLLs and ActiveX controls installed in the Windows directories of your development system. Note that many of today&#8217;s development tools require that you distribute runtime support files along with your application. Please consult your development tool&#8217;s documentation to determine what files you need to distribute with your software.</p>
<p><em>Dependency Files</em><br />
Dependency files are external support files that an executable requires for proper operation. In other words, they are external files that a program file &#8220;depends on&#8221; in order to function properly. Dependency files may include INI files, DLLs, ActiveX controls, OCX components, or any other support file type. Although it&#8217;s generally preferable to install dependency files in the same folder as the program that needs them, they are often installed in other locations, such as the Windows system directories.</p>
<p><em>Tip: Professional Windows installer makers like Indigo Rose&#8217;s Setup Factory have a built-in dependency scanner that you can use to identify dependency files and add them to your project. You can access this feature by choosing Tools &gt; Scan File Dependencies.</em></p>
<p><strong>2. Where Do Your Files Need To Be Installed?</strong><br />
Once you have your software organized, you need to determine exactly where each file needs to go on the user&#8217;s system. While an install creator like Setup Factory does a lot of this work for you by maintaining directory structures when you add files to your project, there are still some files that may need to be directed to different locations on the user&#8217;s system.</p>
<p>Here are some guidelines to help you determine where you should install your files on the user&#8217;s system. Once again, there are four basic types of files that you may need to distribute: program files, configuration files, operating system components, and shared application resources.</p>
<p><em>Installing Program Files</em><br />
Program files should be installed in a folder that the user chooses during the installation process. This folder is referred to as the application folder. The path to the application folder is usually represented by the variable %AppFolder%.</p>
<p>It&#8217;s okay to install program files in sub-folders within the application folder &#8211; in fact, organizing your program files into sub-folders is a very good idea. Your files don&#8217;t all have to be in the application folder itself; the folder that the user chooses can be used as a common application folder, with sub-folders for all of your program files.</p>
<p><em>Installing Configuration Files</em><br />
In the past, initialization or &#8220;INI&#8221; files were often installed in the Windows folder. This is definitely not necessary or even a good idea anymore. Unless your application shares a configuration file with other programs, it&#8217;s best to install the file in the application folder along with your program files or more suitably in a User Data folder. In fact, the current best practice it to avoid installing any files in the Windows folder, or in any other folders where critical operating system files are stored.</p>
<p><em>Installing Operating System Components</em><br />
Operating system components, such as DLL or OCX files, are traditionally installed in the WINDOWS\SYSTEM folder (%SystemFolder%). If your application doesn&#8217;t need to share these files with other applications, it&#8217;s best to install them in your application folder (%AppFolder%) instead.</p>
<p><em>Installing Shared Application Resources</em><br />
Shared application resources, such as some ActiveX controls or DLL files, are generally installed in the WINDOWS\SYSTEM folder (%SystemFolder%). Keep in mind that some DLL and OCX files have dependency files themselves, and these dependency files need to be distributed and possibly also registered before the DLL or OCX files can be used. You should consult the documentation for your components to determine what dependencies they have.</p>
<p><strong>3. What System Changes Need To Be Made?</strong><br />
The next step is to think about what changes, if any, need to be made to the user&#8217;s system. This can include changes to system files, changes to the Registry, and even such things as installing and registering fonts. All of these changes can be handled easily using a professional install creator like Setup Factory.</p>
<p><strong>4. What Information Do You Need from the User?</strong><br />
The final step in planning your software installation is to consider what information you will need from the user, and what information you will need from the user&#8217;s system. For example, in order to personalize your software or register it to a specific user, you may want to ask the user to provide their name on a User Information screen. Or, you may want to ask the user for a serial number on a Verify Serial Number screen.</p>
<p><strong>Final Steps</strong><br />
Now that you&#8217;ve planned everything out, you can actually build your software installer. Simply start up your software installer maker tool and follow the blue-print you created. Assuming you have an install creator that is easy to use, let&#8217;s you visually organize your files and gives you full control over where files get installed and what system changes are made, you shouldn&#8217;t run into any problems!</p>
<p>For more information on choosing a software install maker that is easy to use and gives you complete control over the installation process, visit <a href="http://www.indigorose.com/products/setup-factory/">http://www.indigorose.com/products/setup-factory/</a> and download a free trial version of Setup Factory.</p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/' rel='bookmark' title='Permanent Link: Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications'>Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications</a> <small>Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times...</small></li><li><a href='http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/' rel='bookmark' title='Permanent Link: Choosing an AutoPlay Multimedia Software Development Tool'>Choosing an AutoPlay Multimedia Software Development Tool</a> <small>Getting started developing multimedia software applications can seem intimidating at...</small></li><li><a href='http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/' rel='bookmark' title='Permanent Link: Using a Binary Patch Maker to Create Secure Software Patches'>Using a Binary Patch Maker to Create Secure Software Patches</a> <small>Once a software product has been released into the field,...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications</title>
		<link>http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/</link>
		<comments>http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 20:28:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[automatic update]]></category>
		<category><![CDATA[automatic updating]]></category>
		<category><![CDATA[check for updates]]></category>
		<category><![CDATA[indigo rose]]></category>
		<category><![CDATA[indigorose]]></category>
		<category><![CDATA[internet update]]></category>
		<category><![CDATA[live updates]]></category>
		<category><![CDATA[patch management]]></category>
		<category><![CDATA[software development tool]]></category>
		<category><![CDATA[software patching]]></category>
		<category><![CDATA[software update]]></category>
		<category><![CDATA[software updating]]></category>
		<category><![CDATA[true update]]></category>
		<category><![CDATA[TrueUpdate]]></category>
		<category><![CDATA[windows update software]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=2021</guid>
		<description><![CDATA[Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times make it more important than ever to get new software versions into the hands of users quickly and efficiently. The Internet has created a highly competitive market where users expect immediate results; the prize often goes to the company that reacts the most quickly to [...]


More Information:<ol><li><a href='http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/' rel='bookmark' title='Permanent Link: Using a Binary Patch Maker to Create Secure Software Patches'>Using a Binary Patch Maker to Create Secure Software Patches</a> <small>Once a software product has been released into the field,...</small></li><li><a href='http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/' rel='bookmark' title='Permanent Link: Choosing an AutoPlay Multimedia Software Development Tool'>Choosing an AutoPlay Multimedia Software Development Tool</a> <small>Getting started developing multimedia software applications can seem intimidating at...</small></li><li><a href='http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/' rel='bookmark' title='Permanent Link: Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook'>Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook</a> <small>So, you&#8217;ve created a great new software application for the...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times make it more important than ever to get new software versions into the hands of users quickly and efficiently. The Internet has created a highly competitive market where users expect immediate results; the prize often goes to the company that reacts the most quickly to changes in user needs and perceptions. In order to streamline software deployment, it is becoming increasingly desirable for software authors to incorporate automated updating abilities into their software.</p>
<p><strong>1. What Is Automatic Software Updating?</strong><br />
Automated updating is the ability of software to handle some or all of the update process so the user doesn&#8217;t have to. The update process consists of all the steps required to determine whether a newer version exists for a given piece of software, as well as all the steps required to bring an older version up to date. Automating the update process allows software to keep itself current after it has been deployed to users.</p>
<p><strong>2. Who Benefits from Automatic Updates?</strong><br />
Software developers, network administrators and end-users alike share in the benefits of Internet updated enabled software. Developers appreciate it for the control it gives them over software that has already been deployed. Network administrators benefit from improved security and better control of network nodes. End-users see live update enabled software as an assurance of quality-a symbol that the developer is there to stand behind their product.</p>
<p>Any company who develops software applications or distributes data needs to add automatic updating to their applications. Any organization that needs to ensure its network is secure and updated with the latest patches needs automated software updating.</p>
<p>Ensuring that everyone is using the most recent point release of a particular package makes good sense. It eliminates legacy technical support calls, and corresponding user frustration. It ensures that data is current. It also serves to maintain customer satisfaction. And that&#8217;s something everyone can appreciate.</p>
<p><strong>3. What&#8217;s Wrong With Manual Software Update Methods?<br />
</strong>One of the most serious problems with traditional update methods is that they require users to do most of the work. The problem with relying on an update process that demands too much user involvement is obvious; the users might decide it isn&#8217;t worth the hassle to keep their systems up to date. This results in a higher incidence of legacy support issues, more security holes and other related problems. Additionally, when users don&#8217;t update, they don&#8217;t benefit from bug fixes and product improvements. Automatic software update systems help solve all of these problems.</p>
<p><strong>4. What Can You Do With An Automatic Software Updating System?</strong><br />
Software products and network clients that have been auto-update enabled can quickly and efficiently determine if they are out of date. Embedding into a software product makes it extremely easy to manage, control and update &#8220;in the field&#8221;. Likewise, deploying a TrueUpdate client to computer systems throughout your network gives you a fast and manageable way to ensure that each node is current with the latest patches, documents and data that your company requires.</p>
<p><strong>5. Why Add Automatic Updating To Your Software Applications?</strong><br />
In a traditional release cycle, once your application or data files are released to customers, clients or other end-users, they are static, expensive and time-consuming to alter. However, once you distribute an automated update client with your application, you&#8217;ll be able to easily update your product or data as often as you require.</p>
<p>From the developer&#8217;s point of view, when a new software release is available-perhaps a bug has been fixed-an automated software updating system makes it trivial to publish the changes and bring all of your users up to date. The next time the user runs the application, the Internet update client will detect that a new release is available and take steps to handle it.</p>
<p><strong>Final Words&#8230;</strong><br />
Today&#8217;s software users are savvy; they demand responsiveness from software companies and they want tools that meet their needs and make them more productive. In order to maintain customer loyalty and maximize the user&#8217;s experience with your software, you need to make updating your software as easy as possible. In any case, the benefits include lower technical support costs, faster time-to-market, more frequent bug fixes, hassle-free security updates and quicker feature additions.</p>
<p>From a software development perspective, it&#8217;s easy to add these benefits to your applications. There are excellent software development tools available for adding a sophisticated software updating and patch management solutions to both software products and network infrastructure. Whether you&#8217;re a software developer needing to add a &#8220;Check for Update&#8221; feature to your program, or you&#8217;re a network administrator wanting to automate the detection and application of system patches to hundreds or thousands of computer systems in your organization, the value will far outweigh the upfront costs.</p>
<p><strong>About the Author</strong><br />
Colin Adams is the President of Indigo Rose Software Design Corporation. Indigo Rose has been creating professional software development tools since 1991 and can be found on the web at <a href="http://www.indigorose.com/">http://www.indigorose.com</a>. For more information on choosing an automatic software update system, visit <a href="http://www.indigorose.com/products/trueupdate/">http://www.indigorose.com/products/trueupdate/</a> and download a free trial version of TrueUpdate.</p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/' rel='bookmark' title='Permanent Link: Using a Binary Patch Maker to Create Secure Software Patches'>Using a Binary Patch Maker to Create Secure Software Patches</a> <small>Once a software product has been released into the field,...</small></li><li><a href='http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/' rel='bookmark' title='Permanent Link: Choosing an AutoPlay Multimedia Software Development Tool'>Choosing an AutoPlay Multimedia Software Development Tool</a> <small>Getting started developing multimedia software applications can seem intimidating at...</small></li><li><a href='http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/' rel='bookmark' title='Permanent Link: Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook'>Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook</a> <small>So, you&#8217;ve created a great new software application for the...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing an AutoPlay Multimedia Software Development Tool</title>
		<link>http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/</link>
		<comments>http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 20:54:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=1991</guid>
		<description><![CDATA[Getting started developing multimedia software applications can seem intimidating at first, especially if you&#8217;re not coming from a computer programming background. Even if you are familiar with common programming languages like C++, Delphi and Microsoft Visual Basic, developing interactive multimedia software means some very unique challenges.
There are many different software development tools that you can [...]


More Information:<ol><li><a href='http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/' rel='bookmark' title='Permanent Link: Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications'>Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications</a> <small>Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times...</small></li><li><a href='http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/' rel='bookmark' title='Permanent Link: Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook'>Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook</a> <small>So, you&#8217;ve created a great new software application for the...</small></li><li><a href='http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/' rel='bookmark' title='Permanent Link: Using a Binary Patch Maker to Create Secure Software Patches'>Using a Binary Patch Maker to Create Secure Software Patches</a> <small>Once a software product has been released into the field,...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Getting started developing multimedia software applications can seem intimidating at first, especially if you&#8217;re not coming from a computer programming background. Even if you are familiar with common programming languages like C++, Delphi and Microsoft Visual Basic, developing interactive multimedia software means some very unique challenges.</p>
<p>There are many different software development tools that you can use, but very few are suited to the task of multimedia authoring. You want a development environment that makes it easy to combine multiple types of media into a single application. For example, a specialized multimedia software development tool like AutoPlay Media Studio, will allow you to simply drag and drop images, music, video, Adobe Flash, HTML, text and interactive control objects right onto a blank page or &#8220;canvas&#8221;, and then arrange the layout using your mouse.</p>
<p>Traditional programming languages can be used to build multimedia applications, but you&#8217;ll have to invest a large amount of time into learning how to adapt them to the task at hand. You&#8217;ll find that you spend a lot of timing struggling to reinvent the wheel, such as dealing with low-level graphics, handling video playback formats and streaming multiple audio channels. Don&#8217;t waste your time figuring all of these things out from scratch. You&#8217;d be much better off picking an appropriate development system that can handle these things right out of the box.</p>
<p>There are also a variety of tools that are suitable for making multimedia animations and simple applets, but aren&#8217;t particularly well suited for developing full software applications. I put products like Adobe Flash into that category. Flash is a fantastic tool for making website content, short videos and mini applications, but it&#8217;s really not suited for building desktop multimedia applications. You should instead look for a tool that can incorporate &#8220;bits&#8221; of Flash into your application for effect, and then extend that into a full professional software application.</p>
<p>Creating the visual interface to your application is the first step in multimedia software development, but that&#8217;s just the beginning. You&#8217;re going to want to tie together all of those visual elements into an interactive software product. For example, if you have a button on your application screen that says &#8220;Install Software&#8221;, you need a way to hook in the logic and events that make that button do something! A good multimedia software development tool will make this extremely easy on you, the programmer.</p>
<p>Whether you&#8217;re making an autorun CD / DVD menu system, a database front-end or a software training application, the basic process is the same. There is an &#8220;object&#8221; like a &#8220;button&#8221; that has &#8220;events&#8221; like &#8220;Mouse Click&#8221; associated with it. When that event occurs, the program will execute a particular sequence of actions, or a &#8220;script&#8221;. What that script does should be totally in your control. For example, AutoPlay Media Studio has a library of over 750 functions that you can use, including running programs, sending email, copying files, parsing XML data and much more. The more actions you have at your disposal, the faster you can create your software applications without having to develop any custom code.</p>
<p>Once your application has been developed, you&#8217;re going to want to distribute your software to your customers. That&#8217;s sometimes the most complicated step in the process. If you use a product like Visual Basic, you may have dozens of ActiveX controls, OCX controls or other addons and libraries that need to be distributed as well. Keeping track of them all can be a real headache. On the other hand, products like AutoPlay Media Studio generate a single-file executable, without any external dependencies. Additionally, it can burn your application right to an AutoPlay CD-ROM or DVD-ROM that will autorun as soon as your customer inserts it into their computer. Alternatively, if you distribute your software from your website, you can just upload that single autorun.exe to your site and your customers can download it directly. No software installation or setup wizard required!</p>
<p>Getting started with multimedia software development can be difficult if you choose the wrong programming tools, but if you do your research and choose an appropriate agile software development tool, you&#8217;ll be able to rapidly create professional multimedia software applications in no time.</p>
<p>About the Author<br />
Colin Adams is the President of Indigo Rose Software Design Corporation. Indigo Rose has been creating professional software development tools like AutoPlay Media Studio since 1991 and can be found on the web at http://www.indigorose.com.</p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/articles/software-developers-add-a-check-for-update-feature-to-your-software-applications/' rel='bookmark' title='Permanent Link: Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications'>Software Developers: Add a &#8220;Check for Update&#8221; Feature to Your Software Applications</a> <small>Today&#8217;s rapid product cycles, security vulnerabilities and short turnaround times...</small></li><li><a href='http://www.indigorose.com/articles/build-a-bullet-proof-windows-software-installer-4-critical-steps-you-cant-overlook/' rel='bookmark' title='Permanent Link: Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook'>Build a Bullet-Proof Windows Software Installer: 4 Critical Steps You Can&#8217;t Overlook</a> <small>So, you&#8217;ve created a great new software application for the...</small></li><li><a href='http://www.indigorose.com/articles/using-a-binary-patch-maker-to-create-secure-software-patches/' rel='bookmark' title='Permanent Link: Using a Binary Patch Maker to Create Secure Software Patches'>Using a Binary Patch Maker to Create Secure Software Patches</a> <small>Once a software product has been released into the field,...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/articles/choosing-an-autoplay-multimedia-software-development-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup Factory 8.2 Creates Windows 7 Compatible Software Installers</title>
		<link>http://www.indigorose.com/press-releases/create-windows-7-compatible-software-installers-with-setup-factory-8-2/</link>
		<comments>http://www.indigorose.com/press-releases/create-windows-7-compatible-software-installers-with-setup-factory-8-2/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 21:08:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[advanced installer]]></category>
		<category><![CDATA[indigo rose]]></category>
		<category><![CDATA[installation tools]]></category>
		<category><![CDATA[press release]]></category>
		<category><![CDATA[setup builder]]></category>
		<category><![CDATA[Setup Factory]]></category>
		<category><![CDATA[setup wizard]]></category>
		<category><![CDATA[software installation tools]]></category>
		<category><![CDATA[software installer]]></category>
		<category><![CDATA[windows installer]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=1938</guid>
		<description><![CDATA[Indigo Rose Software today announced the launch of Setup Factory 8.2 with full support for Microsoft Windows 7. Software developers can now build a single software installer program that works just as well on the latest Windows operating systems (Windows 7, Server 2008, Vista) as it does on legacy systems like Windows 95, 98, 2000 [...]


More Information:<ol><li><a href='http://www.indigorose.com/press-releases/setup-factory-6-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Ships Setup Factory 6.0 &#8211; Create Internet Enhanced Software Installers'>Indigo Rose Ships Setup Factory 6.0 &#8211; Create Internet Enhanced Software Installers</a> <small>Indigo Rose announces the immediate availability of Setup Factory 6.0....</small></li><li><a href='http://www.indigorose.com/press-releases/visual-patch-2-press-release/' rel='bookmark' title='Permanent Link: Visual Patch 2.0 Creates Smaller and Faster Software Patches'>Visual Patch 2.0 Creates Smaller and Faster Software Patches</a> <small>Indigo Rose Software announces the immediate availability of Visual Patch...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-3-5-brings-automated-software-updating-to-microsoft-windows-7-applications/' rel='bookmark' title='Permanent Link: TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications'>TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications</a> <small>Software Development Tool Simplifies Adding a "Check for Update" Feature...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Indigo Rose Software today announced the launch of <a href="http://www.indigorose.com/products/setup-factory/">Setup Factory 8.2</a> with full support for Microsoft Windows 7. Software developers can now build a single software installer program that works just as well on the latest Windows operating systems (Windows 7, Server 2008, Vista) as it does on legacy systems like Windows 95, 98, 2000 and XP. This makes Setup Factory 8.2 a unique solution for software developers who require the widest compatibility for their setup programs.</p>
<p>An easy-to-use Project Wizard helps programmers create ready-to-build software installation projects in minutes. They can simply drag and drop files and folders onto the project window and they&#8217;re ready to build. Setup Factory outputs a compact, single-file setup.exe that is ideal for distribution via Internet download, CD/DVD-ROM, USB memory keys and corporate networks.</p>
<p>&#8220;Indigo Rose is excited to launch this new version of Setup Factory,&#8221; said Colin Adams, President at Indigo Rose Software Design Corporation. &#8220;Making Setup Factory compatible with Microsoft Windows 7 ensures that our customers can deploy their software development projects on the widest variety of Windows operating systems possible. It&#8217;s just one more reason that over 20,000 companies worldwide rely on Indigo Rose&#8217;s software development tools to help deliver their digital products.&#8221;</p>
<p>While retaining Setup Factory&#8217;s popular visual development environment, Setup Factory 8.2 also includes a fully featured scripting engine. It has everything from &#8220;for, repeat and while&#8221; loops, to &#8220;if/else&#8221; conditions, functions, variables and associative arrays. With a library of over 360+ functions and a fill-in-the-blanks style Action Wizard, advanced installers can be created to handle even the most sophisticated installation tasks. High-level actions are provided to make registry changes, call DLL functions, execute programs, start and stop services, interact with web scripts, enumerate processes, parse XML data, download files and much more.</p>
<p>With Setup Factory 8.2&#8217;s Visual Dialog Editor and Skin/Theme System, software engineers can create installers that even the marketing department can approve of. Developers can either create custom install wizard dialogs from scratch, or select from 20+ ready-made dialogs such as license agreement acceptance and serial number verification. Once the dialog sequence has been created, installation developers can then choose from dozens of pre-made visual themes, letting them customize background images, fonts, logos, colors and other style settings with a single click.</p>
<p>Other features of Setup Factory 8.2 include high performance LZMA data compression with up to 300% better compression ratios and 20% faster installation speed, automatic Authenticode signing, support for files larger than 2GB, an extensive Windows Installer MSI action library, auto-detecting international language support, HTML-based project reports, full uninstaller, silent install mode, and support for automated builds.</p>
<p>Setup Factory 8.2 sells for $395 (US$) per developer or $995 for the Five Developer Team Pack. It can be purchased through all major software development tools resellers, or directly from Indigo Rose Software at <a href="http://www.indigorose.com">http://www.indigorose.com</a>. A free 30-day trial download is available from the company&#8217;s website.</p>
<p>###</p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/press-releases/setup-factory-6-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Ships Setup Factory 6.0 &#8211; Create Internet Enhanced Software Installers'>Indigo Rose Ships Setup Factory 6.0 &#8211; Create Internet Enhanced Software Installers</a> <small>Indigo Rose announces the immediate availability of Setup Factory 6.0....</small></li><li><a href='http://www.indigorose.com/press-releases/visual-patch-2-press-release/' rel='bookmark' title='Permanent Link: Visual Patch 2.0 Creates Smaller and Faster Software Patches'>Visual Patch 2.0 Creates Smaller and Faster Software Patches</a> <small>Indigo Rose Software announces the immediate availability of Visual Patch...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-3-5-brings-automated-software-updating-to-microsoft-windows-7-applications/' rel='bookmark' title='Permanent Link: TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications'>TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications</a> <small>Software Development Tool Simplifies Adding a "Check for Update" Feature...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/press-releases/create-windows-7-compatible-software-installers-with-setup-factory-8-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup Factory 8.2</title>
		<link>http://www.indigorose.com/products/setup-factory/</link>
		<comments>http://www.indigorose.com/products/setup-factory/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:00:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=33</guid>
		<description><![CDATA[Perfect for those projects needing the custom installation logic that only a scripted installer can give you. It&#8217;s extremely easy to use, but it&#8217;s also incredibly powerful.
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;


No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Perfect for those projects needing the custom installation logic that only a scripted installer can give you. It&#8217;s extremely easy to use, but it&#8217;s also incredibly powerful.</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/products/setup-factory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AutoPlay Media Studio 7.5</title>
		<link>http://www.indigorose.com/products/autoplay-media-studio/</link>
		<comments>http://www.indigorose.com/products/autoplay-media-studio/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 07:00:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Products]]></category>
		<category><![CDATA[agile software development]]></category>
		<category><![CDATA[autoplay]]></category>
		<category><![CDATA[AutoPlay Media Studio]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[autorun cd]]></category>
		<category><![CDATA[autorun exe]]></category>
		<category><![CDATA[development tools]]></category>
		<category><![CDATA[extreme  programming]]></category>
		<category><![CDATA[multimedia  software]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[programming  software]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[software development tools]]></category>
		<category><![CDATA[visual programming]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=35</guid>
		<description><![CDATA[Create powerful CD/DVD autorun menus, multimedia projects, interactive training applications and hundreds of other custom software programs in a drag and drop visual development environment.
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;


No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Create powerful CD/DVD autorun menus, multimedia projects, interactive training applications and hundreds of other custom software programs in a drag and drop visual development environment.</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/products/autoplay-media-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AutoPlay Media Studio 7.5 Brings Visual Multimedia Software Development to Windows 7</title>
		<link>http://www.indigorose.com/press-releases/multimedia-software-development-with-autoplay-media-studio-7-5/</link>
		<comments>http://www.indigorose.com/press-releases/multimedia-software-development-with-autoplay-media-studio-7-5/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 20:20:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[agile software development]]></category>
		<category><![CDATA[autoplay]]></category>
		<category><![CDATA[AutoPlay Media Studio]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[autorun cd]]></category>
		<category><![CDATA[autorun exe]]></category>
		<category><![CDATA[development tools]]></category>
		<category><![CDATA[extreme  programming]]></category>
		<category><![CDATA[multimedia  software]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[programming  software]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[software development tools]]></category>
		<category><![CDATA[visual programming]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=1881</guid>
		<description><![CDATA[Indigo Rose Software announces the immediate availability of AutoPlay Media Studio 7.5 with full support for Microsoft Windows 7. AutoPlay Media Studio is a professional software development tool used by thousands of software developers to create professional autorun CD / DVD&#8217;s and multimedia software. Its visual programming environment is ideally suited to agile software development [...]


More Information:<ol><li><a href='http://www.indigorose.com/press-releases/autoplay-media-studio-5-press-release/' rel='bookmark' title='Permanent Link: Drag-and-Drop Multimedia Authoring with AutoPlay Media Studio 5.0'>Drag-and-Drop Multimedia Authoring with AutoPlay Media Studio 5.0</a> <small>Indigo Rose Software announces the immediate availability of AutoPlay Media...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-3-5-brings-automated-software-updating-to-microsoft-windows-7-applications/' rel='bookmark' title='Permanent Link: TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications'>TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications</a> <small>Software Development Tool Simplifies Adding a "Check for Update" Feature...</small></li><li><a href='http://www.indigorose.com/press-releases/autoplay-media-studio-4-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Releases AutoPlay Media Studio 4.0'>Indigo Rose Releases AutoPlay Media Studio 4.0</a> <small>Indigo Rose announces the immediate availability of AutoPlay Media Studio...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Indigo Rose Software announces the immediate availability of <a href="http://www.indigorose.com/autoplay-media-studio/overview-autoplay-media-studio/">AutoPlay Media Studio 7.5</a> with full support for Microsoft Windows 7. AutoPlay Media Studio is a professional software development tool used by thousands of software developers to create professional autorun CD / DVD&#8217;s and multimedia software. Its visual programming environment is ideally suited to agile software development and extreme programming projects like database front-ends, business applications and interactive training systems.</p>
<p>AutoPlay Media Studio 7.5 is a rapid application development (RAD) platform with specialized multimedia capabilities. Simply drag and drop video, audio, images, Flash and HTML onto a blank page and arrange the layout with your mouse. With no programming knowledge required, you can instruct your project to perform actions automatically or in response to events such as mouse clicks. There are over 640 actions to choose from including executing programs, querying databases, copying files, displaying dialog boxes, sending emails, parsing XML data, interacting with web scripts and much more.</p>
<p>&#8220;It&#8217;s a very unique software development tool,&#8221; says Indigo Rose Software President Colin Adams. &#8220;More and more companies are using it as a rapid-development alternative to tools like Delphi, C++ and Visual Basic. While well known as being the industry standard tool for creating autoplay CD / DVD menus, it&#8217;s also being used to develop thousands of other creative applications like web tools, network utilities and much more.&#8221;</p>
<p>AutoPlay Media Studio&#8217;s scripting engine is based upon the fast and efficient open-source Lua programming language. This scripting language offers advanced functionality, with everything from functions and control structures to arithmetic operators and associative arrays. It also features full syntax highlighting, code completion and other advanced programming facilities.</p>
<p>Other features of AutoPlay Media Studio 7.5 include 17+ interactive objects (Rich Text, Slideshow, Grid, Flash, Web, Checkbox, Radio Button, Input, Video, Tree, Progress Bar and more), resource stamping, custom window shapes, enhanced cryptography actions and security features, and much more.</p>
<p>AutoPlay Media Studio 7.5 sells for $295 (USD) per developer (or $995 for the 5 developer Team Pack) and can be purchased from most software development tools vendors or online at http://www.indigorose.com. AutoPlay Media Studio 7.5 is compatible with Windows 7, Windows Vista, Windows XP and earlier versions. A free 30-day trial download is available from the company&#8217;s website at http://www.indigorose.com/products/autoplay-media-studio.</p>
<p><strong>About Indigo Rose Software Design Corporation</strong><br />
Privately held, Indigo Rose Software has been developing innovative software products and multimedia authoring tools since 1991 that are used by thousands of corporate, government and ISV customers around the world. Indigo Rose is headquartered in Winnipeg, Canada, and can be found on the Internet at http://www.indigorose.com.</p>
<p>###</p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/press-releases/autoplay-media-studio-5-press-release/' rel='bookmark' title='Permanent Link: Drag-and-Drop Multimedia Authoring with AutoPlay Media Studio 5.0'>Drag-and-Drop Multimedia Authoring with AutoPlay Media Studio 5.0</a> <small>Indigo Rose Software announces the immediate availability of AutoPlay Media...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-3-5-brings-automated-software-updating-to-microsoft-windows-7-applications/' rel='bookmark' title='Permanent Link: TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications'>TrueUpdate 3.5 Brings Automated Software Updating to Microsoft Windows 7 Applications</a> <small>Software Development Tool Simplifies Adding a "Check for Update" Feature...</small></li><li><a href='http://www.indigorose.com/press-releases/autoplay-media-studio-4-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Releases AutoPlay Media Studio 4.0'>Indigo Rose Releases AutoPlay Media Studio 4.0</a> <small>Indigo Rose announces the immediate availability of AutoPlay Media Studio...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/press-releases/multimedia-software-development-with-autoplay-media-studio-7-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrapbook MAX! 2.0 Digital Scrapbooking Software Combines Ease of Use with Advanced Graphics Technology</title>
		<link>http://www.indigorose.com/press-releases/scrapbook-max-2-digital-scrapbooking-software-press-release/</link>
		<comments>http://www.indigorose.com/press-releases/scrapbook-max-2-digital-scrapbooking-software-press-release/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 15:51:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[digital scrapbook]]></category>
		<category><![CDATA[digital scrapbook software]]></category>
		<category><![CDATA[digital scrapbooking]]></category>
		<category><![CDATA[Digital Scrapbooking Software]]></category>
		<category><![CDATA[scrapbook]]></category>
		<category><![CDATA[scrapbook max]]></category>
		<category><![CDATA[scrapbook program]]></category>
		<category><![CDATA[scrapbook software]]></category>
		<category><![CDATA[scrapbooking]]></category>
		<category><![CDATA[scrapbooking program]]></category>
		<category><![CDATA[scrapbooking software]]></category>

		<guid isPermaLink="false">http://www.indigorose.com/?p=1876</guid>
		<description><![CDATA[(WINNIPEG) - New Scrapbook MAX! 2.0 is the first digital scrapbooking software program to combine the latest advances in precision graphics technology with an interface designed specifically for digital scrapbookers. The result is a program that is easy to use for novices, but sophisticated enough to meet the creative demands of advanced digital scrapbookers. It&#8217;s [...]


More Information:<ol><li><a href='http://www.indigorose.com/press-releases/scrapbook-max-press-release/' rel='bookmark' title='Permanent Link: Scrapbook MAX! Digital Scrapbooking Software for Windows'>Scrapbook MAX! Digital Scrapbooking Software for Windows</a> <small>Indigo Rose Software announces the immediate availability of Scrapbook MAX!,...</small></li><li><a href='http://www.indigorose.com/press-releases/photospark-press-release/' rel='bookmark' title='Permanent Link: PhotoSpark Software Turns Digital Photos Into Fun'>PhotoSpark Software Turns Digital Photos Into Fun</a> <small>Indigo Rose Software announces the immediate availability of PhotoSpark for...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled'>Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled</a> <small>Indigo Rose Software, developers of the award-winning Setup Factory and...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><strong>(WINNIPEG) </strong>- New <em>Scrapbook MAX! 2.0</em> is the first <a href="http://www.scrapbookmax.com/">digital scrapbooking software</a> program to combine the latest advances in precision graphics technology with an interface designed specifically for digital scrapbookers. The result is a program that is easy to use for novices, but sophisticated enough to meet the creative demands of advanced digital scrapbookers. It&#8217;s designed to make digital scrapbooking fast, fun and easy for all ages.</p>
<p><em><a href="http://www.scrapbookmax.com/">Scrapbook MAX! 2.0</a></em> presents users with a streamlined interface that is intuitive to work with. It&#8217;s like using traditional paper and scissors. Users can start with a pre-made (but fully customizable) template page, or build their pages from scratch using photos, embellishments, paper scraps and a variety of artistic text options. A new archival quality graphics engine gives <em>Scrapbook MAX! 2.0</em> superior speed and accuracy, allowing scrapbookers to move, resize, rotate and crop elements in real-time, while maintaining sub-pixel precision -features exclusive to <em>Scrapbook MAX! 2.0</em>.</p>
<p>Sophisticated design tools allow users to bend, stretch and shape text; fill text characters with images and patterns; colorize and tint graphics to exact specifications; and even control the angle, distance and color of shadows. Support for all popular graphics formats and digital scrapbooking kits is also included.</p>
<p>&#8220;Scrapbookers want a program that offers lots of creative options, but they&#8217;ve been frustrated by the complicated, cluttered interfaces found in other digital scrapbooking software products,&#8221; says <em>Scrapbook MAX!</em> Public Relations Director Karin Adams. &#8220;We&#8217;ve spent years listening to digital scrapbookers, in order to build a next-generation product that would really meet their needs. <em>Scrapbook MAX! 2.0</em> helps bridge the gap between traditional paper scrapbooking and the benefits of digital scrapbooking.&#8221;</p>
<p>Digital scrapbooking is all about preserving your memories and having fun while you do it. &#8220;Our goals for <em>Scrapbook MAX! 2.0</em> were to not only build on the success of version 1.0, but to really push the boundaries of what scrapbookers can do,&#8221; says Adams. &#8220;We wanted to inspire them with creative possibilities, but at the same time keep the software easy to use. I believe <em>Scrapbook MAX! 2.0</em> makes <a href="http://www.scrapbookmax.com/">digital scrapbooking</a> more creative and more accessible than ever.&#8221;</p>
<p>Turning digital creations into physical pages is a matter of a few mouse clicks with <em>Scrapbook MAX! 2.0</em>. Users can output their pages as high-resolution prints using their own color printer, or turn them into digital slideshows and movies. Additionally, support for generating JPG, TIF and PNG images makes sharing through email, blogs, social networking sites and the free online <em>Scrapbook MAX!</em> web gallery possible. Ordering professional prints and photobooks are other options.</p>
<p><em>Scrapbook MAX! 2.0</em> sells for $59.95 (US$) and can be purchased at select retailers or online at <a href="http://www.scrapbookmax.com">http://www.scrapbookmax.com</a>. <em>Scrapbook MAX! 2.0</em> is compatible with Windows XP, Windows Vista and Windows 7. A free 30-day trial download is available from the company&#8217;s website at <a href="http://www.scrapbookmax.com">http://www.scrapbookmax.com</a>. </p>


<p>More Information:<ol><li><a href='http://www.indigorose.com/press-releases/scrapbook-max-press-release/' rel='bookmark' title='Permanent Link: Scrapbook MAX! Digital Scrapbooking Software for Windows'>Scrapbook MAX! Digital Scrapbooking Software for Windows</a> <small>Indigo Rose Software announces the immediate availability of Scrapbook MAX!,...</small></li><li><a href='http://www.indigorose.com/press-releases/photospark-press-release/' rel='bookmark' title='Permanent Link: PhotoSpark Software Turns Digital Photos Into Fun'>PhotoSpark Software Turns Digital Photos Into Fun</a> <small>Indigo Rose Software announces the immediate availability of PhotoSpark for...</small></li><li><a href='http://www.indigorose.com/press-releases/trueupdate-press-release/' rel='bookmark' title='Permanent Link: Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled'>Indigo Rose Software Ships TrueUpdate 1.0 &#8211; New Internet Updating Technology Unveiled</a> <small>Indigo Rose Software, developers of the award-winning Setup Factory and...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.indigorose.com/press-releases/scrapbook-max-2-digital-scrapbooking-software-press-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
