<?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>Autoplay Media Studio Examples &#38; Scripts &#187; Paragraph Action</title>
	<atom:link href="http://amstudio.azman.info/category/paragraph-action/feed/" rel="self" type="application/rss+xml" />
	<link>http://amstudio.azman.info</link>
	<description>Samples for Autoplay Media Studio Users</description>
	<lastBuildDate>Fri, 17 Jun 2011 15:52:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>What&#8217;s New in AMS 8</title>
		<link>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/</link>
		<comments>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 15:47:44 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Application Action]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Check Box]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Grid]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Inherit]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[LUA]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[SlideShow]]></category>
		<category><![CDATA[Status Dialog]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=894</guid>
		<description><![CDATA[Hi, If you want to use all the examples from AMS 5 to AMS 7.5 in your AMS 8 projects, please take note below. AMS 8 is using an updated version of LUA 5.1. One of the most important change is the TABLE ITERATION. This is the old code used in AMS 5 to AMS [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>If you want to use all the examples from AMS 5 to AMS 7.5 in your AMS 8 projects, please take note below.</p>
<p>AMS 8 is using an updated version of LUA 5.1. One of the most important change is the TABLE ITERATION.</p>
<p>This is the old code used in AMS 5 to AMS 7.5 for TABLE ITERATION ( loops )<br />
<code><br />
-----------------------------------------------<br />
mytable = {"One","Two","Three"};</p>
<p>for k, v in mytable do<br />
   Dialog.Message("Table Item", k .. "=" .. v);<br />
end<br />
-----------------------------------------------<br />
</code></p>
<p>If my examples are using LOOPS, you need to change like below:</p>
<p><code><br />
----------------------------------------------<br />
mytable = {"One","Two","Three"};</p>
<p>for k, v in <strong><span style="color: #ff0000;">pairs</span></strong>(mytable) do<br />
    Dialog.Message("Table Item", k .. "=" .. v);<br />
end<br />
----------------------------------------------<br />
</code></p>
<p>See the word &#8220;<span style="color: #ff0000;">pairs</span>&#8221; in red and the bracket, above?</p>
<p>Just add a BRACKET around your TABLE NAME and add the word &#8220;<span style="color: #ff0000;">pairs</span>&#8220;.</p>
<p>Then all my examples using loops will work.</p>
<p>lol &#8230;.. 99.9 % of my examples are using LOOPS.<br />
You&#8217;ll definitely have to change the codes.</p>
<p>Hope this helps.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=What%26%238217%3Bs%20New%20in%20AMS%208&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2011%2F06%2F17%2Fwhats-new-in-ams-8%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Basic Image Edit Console</title>
		<link>http://amstudio.azman.info/2009/06/14/basic-image-edit-console/</link>
		<comments>http://amstudio.azman.info/2009/06/14/basic-image-edit-console/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 10:26:11 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[Basic Image Editing Console]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=826</guid>
		<description><![CDATA[Hi, In our prior project, we have refined the Search Image Utility.  After an image is found and we plan to use, we may need to edit it bit. Some reasons for editing images may include to edit out irrelevant objects or persons in the image, to reduce the size of an image or reposition [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>In our prior project, we have refined the Search Image Utility.  After an image is found and we plan to use, we may need to edit it bit. Some reasons for editing images may include to edit out irrelevant objects or persons in the image, to reduce the size of an image or reposition the object of interest. Thanks to <strong>SSIDE and WORM</strong> for contributing the DLLs which made the editing possible via AMS.</p>
<p>This AMS example shows how a selected Image can be <strong>RESIZED, REPOSITIONED, ROTATED and CROPPED </strong>before any final usage. This <strong>Basic Image Edit Console</strong> will be embedded inside the latest <strong>Search Image Utility</strong> in the next article. Once thats done, we will finally insert this utility into our Mini Email Address Book.</p>
<div id="attachment_829" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/RedGuideOn.jpg"><img class="size-medium wp-image-829" title="RedGuideOn" src="http://amstudio.azman.info/wp-content/uploads/2009/06/RedGuideOn-300x270.jpg" alt="Original Image before Editing" width="300" height="270" /></a><p class="wp-caption-text">Original Image before Editing</p></div>
<p>You may noticed that once you selected an Image, it will appear with ASPECT RATIO maintained eventhough it might be smaller than the original. NOTICED <strong>THE RED RECTANGULAR GUIDE</strong>? That guide is used to <strong>standardize all image sizes</strong> to be used in the Mini Email Address Book. The Image will be cropped according to the size of the Red Guide. You can get rid of this by the <strong>Click On &amp; Click Off Button</strong> as shown in the screen shot below.</p>
<div id="attachment_828" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/RedGuideOFF.jpg"><img class="size-medium wp-image-828" title="RedGuideOFF" src="http://amstudio.azman.info/wp-content/uploads/2009/06/RedGuideOFF-300x271.jpg" alt="Red Guide is Off" width="300" height="271" /></a><p class="wp-caption-text">Red Guide is Off</p></div>
<p>Without the Red Guide, you can Drag the Left Mouse Button and select your own area to Crop. The area to be cropped will appear in a Yellow Guide. Then click the Crop &amp; Save Button. The Cropped Image will be Saved in a Folder &#8220;EditedImage&#8221; on the DeskTop.</p>
<div id="attachment_830" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMouseDrag.jpg"><img class="size-medium wp-image-830" title="imageMouseDrag" src="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMouseDrag-300x272.jpg" alt="Drag Left Mouse Button" width="300" height="272" /></a><p class="wp-caption-text">Drag Left Mouse Button</p></div>
<p>Lets say I keep the Red Guide in the Screen Shot below.  I can move and position the Image using Position Buttons. You can choose the move distance by Pixels by selecting the Position Combo from 1 to 10 pixels.</p>
<div id="attachment_831" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMovedLeft.jpg"><img class="size-medium wp-image-831" title="imageMovedLeft" src="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMovedLeft-300x272.jpg" alt="Image Moved to the LEFT" width="300" height="272" /></a><p class="wp-caption-text">Image Moved to the LEFT</p></div>
<p>From the Screen Shot below, you can see that I have Resized and Moved the Image. You can Resize the Image by using the Resize Buttons + ( for larger ) and &#8211; ( for smaller ). Choose the Resize Percentage from the Percent ComboBox.</p>
<div id="attachment_832" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMovedResized.jpg"><img class="size-medium wp-image-832" title="imageMovedResized" src="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMovedResized-300x273.jpg" alt="Image is Moved and Resized" width="300" height="273" /></a><p class="wp-caption-text">Image is Moved and Resized</p></div>
<p>The Screen Shot below showed the Cropped Image based on the Red Guide.</p>
<div id="attachment_833" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/imageCropped.jpg"><img class="size-medium wp-image-833" title="imageCropped" src="http://amstudio.azman.info/wp-content/uploads/2009/06/imageCropped-300x273.jpg" alt="Cropped Image based on the Red Guide" width="300" height="273" /></a><p class="wp-caption-text">Cropped Image based on the Red Guide</p></div>
<p>The Screen Shot below shows an Image which is cropped based on Mouse Dragged area</p>
<div id="attachment_834" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMouseDragCropped.jpg"><img class="size-medium wp-image-834" title="imageMouseDragCropped" src="http://amstudio.azman.info/wp-content/uploads/2009/06/imageMouseDragCropped-300x271.jpg" alt="Image Cropped based on Mouse Drag Area" width="300" height="271" /></a><p class="wp-caption-text">Image Cropped based on Mouse Drag Area</p></div>
<p>So far so good. You can also ROTATE an Image when it is necessary by using the &lt;&lt;LEFT or RIGHT&gt;&gt; buttons.</p>
<p>And if you plan to use this Basic Image Editing Console for your projects, please make sure you put Error Check Functions. AND&#8230;.. please leave a comment in this blog.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Basic%20Image%20Edit%20Console&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F06%2F14%2Fbasic-image-edit-console%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/06/14/basic-image-edit-console/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Search Image Utility with ThumbList Plugin</title>
		<link>http://amstudio.azman.info/2009/05/31/search-image-utility-with-thumblist-plugin/</link>
		<comments>http://amstudio.azman.info/2009/05/31/search-image-utility-with-thumblist-plugin/#comments</comments>
		<pubDate>Sun, 31 May 2009 11:48:22 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[Status Dialog]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Search Image Utility]]></category>
		<category><![CDATA[ThumbList Plugin]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=773</guid>
		<description><![CDATA[Hi, Let&#8217;s view a stand-alone Search Image Utility before we insert it into our Mini Address Book Project and use SQLite. Some AMS friends might want to view how it works and modify it for other projects. This example searches for IMAGES only. Its a modified version of the previous Search Utility Example. I&#8217;ve enhanced [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Let&#8217;s view a stand-alone Search Image Utility before we insert it into our Mini Address Book Project and use SQLite. Some AMS friends might want to view how it works and modify it for other projects.</p>
<div id="attachment_778" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage1.jpg"><img class="size-medium wp-image-778" title="searchimage1" src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage1-300x274.jpg" alt="Search Image Utility" width="300" height="274" /></a><p class="wp-caption-text">Search &amp; Save in Categories</p></div>
<p>This example searches for IMAGES only. Its a modified version of the previous Search Utility Example. I&#8217;ve enhanced it with the ThumbList Plugin and uses DialogEx to display ThumbNails. It is also a proof that DialogEx can host ThumbList Plugin.</p>
<div id="attachment_779" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage7.jpg"><img class="size-medium wp-image-779" title="searchimage7" src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage7-300x276.jpg" alt="Search Image Utility" width="300" height="276" /></a><p class="wp-caption-text">Double Click An Item will open in default software</p></div>
<p>What can this project do:<br />
1. Search for Images in PC based on file types such as JPG, BMP, PNG and GIF<br />
2. List them to a ListBox<br />
3. Click an Item on the ListBox, that Image can be viewed with Aspect Ratio at the left side<br />
4. Double-Click that Item, it will open the file in a Default Image Software installed in the PC<br />
5. Click on the Image or Button, it will open a DialogEx with ThumbList of the containing folder.<br />
6. Select images from the folder ThumbList and add them to the ListBox<br />
7. Save the Listed Images into Unique Categories for later referencing<br />
8. View ALL the ListBox Images in its own ThumbList<br />
9. As the Search Results in the ListBox contains Images from different folders, users can open each folder on native Windows Explorer from a Button.<br />
10. A Double-Click on any image in the ThumbList, will open the Image in the PC&#8217;s default software.</p>
<div id="attachment_780" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage2.jpg"><img class="size-medium wp-image-780" title="searchimage2" src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage2-300x265.jpg" alt="Search Image Utility" width="300" height="265" /></a><p class="wp-caption-text">Open Thumbs from the same folder. Set Selected to ListBox.</p></div>
<div id="attachment_781" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage5.jpg"><img class="size-medium wp-image-781" title="searchimage5" src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage5-300x198.jpg" alt="Search Image Utility" width="300" height="198" /></a><p class="wp-caption-text">Explore Different Folders from a Button</p></div>
<p>Final note. You can enhance this utility further and make it into a very advanced Electronic Album with other functions including annotation, descriptions, dates, slide-show, delete, move, copy etc etc etc.</p>
<div id="attachment_782" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage6.jpg"><img class="size-medium wp-image-782" title="searchimage6" src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchimage6-300x250.jpg" alt="Search Image Utility" width="300" height="250" /></a><p class="wp-caption-text">Double -click Thumbnails will open default software</p></div>
<p><strong>And if you decide to use this sample, please leave a comment in this blog.</strong> Just say whether you like it or hate it or whatever IN YOUR OWN LANGUAGE. Its a shame that very few leave their comments here eventhough the downloads are many. I&#8217;m beginning to feel that the examples are either too difficult to follow or probably of no value whatsoever.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file..</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Search%20Image%20Utility%20with%20ThumbList%20Plugin&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F05%2F31%2Fsearch-image-utility-with-thumblist-plugin%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/05/31/search-image-utility-with-thumblist-plugin/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Lets Combine Various Examples</title>
		<link>http://amstudio.azman.info/2009/03/07/lets-combine-various-examples/</link>
		<comments>http://amstudio.azman.info/2009/03/07/lets-combine-various-examples/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 18:06:04 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[Dialog to DB to Combo]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=170</guid>
		<description><![CDATA[Hi, We have seen various examples on how to use Combo Boxes. So lets put together some of the examples into 1 APZ and make it into something more practical to use. In this example, we will ADD/DELETE/EDIT a SQLite DB Table through the use of the Good Old Dialog and reflect all changes in [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>Hi,</p>
<p>We have seen various examples on how to use Combo Boxes. So lets put together some of the examples into 1 APZ and make it into something more practical to use.</p>
<p>In this example, we will <strong>ADD/DELETE/EDIT</strong> a <strong>SQLite DB Table</strong> through the use of the <strong>Good Old Dialog</strong> and reflect all changes in a <strong>COMBO Box</strong> instantly.</p>
<p>This example affects only 2 Columns of each Row and shows the use of various SQL Queries. If you need to affect more Table Columns in a DB Row at one go, then replace the Dialog with DialogEx. Please refer to an earlier example on how to use DialogEx for Data Entry. Of course, you need to create more Column Names for the SQL Table. I leave it to your ingenuity.</p>
<div id="attachment_172" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/dialog2db2combo.jpg"><img class="size-medium wp-image-172" title="dialog2db2combo" src="http://amstudio.azman.info/wp-content/uploads/2009/03/dialog2db2combo-300x179.jpg" alt="Dialog To DB to Combo" width="300" height="179" /></a><p class="wp-caption-text">Dialog To DB to Combo</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>If you download this example, please leave a comment.</p>
<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Lets%20Combine%20Various%20Examples&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F07%2Flets-combine-various-examples%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/07/lets-combine-various-examples/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Load Combo Items from a Text File</title>
		<link>http://amstudio.azman.info/2009/03/06/load-combo-items-from-a-text-file/</link>
		<comments>http://amstudio.azman.info/2009/03/06/load-combo-items-from-a-text-file/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 17:33:01 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Button Object]]></category>
		<category><![CDATA[Delimited String to Table Function]]></category>
		<category><![CDATA[Paragraph]]></category>
		<category><![CDATA[TextFile]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=154</guid>
		<description><![CDATA[Hi, We have seen most methods to populate  Combo.  I would like to share another way, which is an important one. In this example, we will import Combo items from a Text File. This file has comma separated values ( techies call em CSVs ). In our case, each line in the Text File will [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>Hi,</p>
<p>We have seen most methods to populate  Combo.  I would like to share another way, which is an important one.</p>
<p>In this example, we will import Combo items from a Text File. This file has comma separated values ( techies call em CSVs ). In our case, each line in the Text File will contain Text and Data separated by a comma.</p>
<p>To separate each line into Text and Data and insert them into the Combo, we will use a function called DelimitedStringFunction ( available in the AMS software Script Gallery Folder ). I placed this function in the Global Panel.</p>
<p>For this example, I use a Button to import data from the Text File. If you want to load items directly as your App starts, just Copy the scripts in the Button and Paste it in the Page OnShow.</p>
<div id="attachment_155" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/loadcombodatafromtextfile.jpg"><img class="size-medium wp-image-155" title="loadcombodatafromtextfile" src="http://amstudio.azman.info/wp-content/uploads/2009/03/loadcombodatafromtextfile-300x215.jpg" alt="Screen Shot : Load Combo Items from a Text File" width="300" height="215" /></a><p class="wp-caption-text">Screen Shot : Load Combo Items from a Text File</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>Please leave a comment about this example.</p>
<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Load%20Combo%20Items%20from%20a%20Text%20File&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F06%2Fload-combo-items-from-a-text-file%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/06/load-combo-items-from-a-text-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DialogEx to Combo</title>
		<link>http://amstudio.azman.info/2009/03/04/dialogex-to-combo/</link>
		<comments>http://amstudio.azman.info/2009/03/04/dialogex-to-combo/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 10:20:36 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[Dialog Ex]]></category>
		<category><![CDATA[Pop-Up Dialog]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=134</guid>
		<description><![CDATA[Hi, We&#8217;ve seen several ways to populate Combo items at runtime, namely from hardcoded Tables, DB, other Combo, Dynamically from Folders and Manually from Input Boxes on a Page. This time, we see exactly how to get Text and Data from a Pop-up DialogEx and insert them into a Combo on a Page. If you [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>Hi,</p>
<p>We&#8217;ve seen several ways to populate Combo items at runtime, namely from hardcoded Tables, DB, other Combo, Dynamically from Folders and Manually from Input Boxes on a Page.</p>
<p>This time, we see exactly how to get Text and Data from a Pop-up DialogEx and insert them into a Combo on a Page.</p>
<p><strong>If you plan to use a lot of Pop-up Dialogs in data entry, then you need to understand this example well.</strong> The same concept applies in transfering Text or Data from DialogEx to other objects such as Grid, ListBox, Paragraph, Richtext, Input, Labels as well as SQLite DB. Just change the action relevant to the objects you plan to set the items with.</p>
<div id="attachment_137" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/17.jpg"><img class="size-medium wp-image-137" title="17" src="http://amstudio.azman.info/wp-content/uploads/2009/03/17-300x181.jpg" alt="Screen Shot : Pop-up DialogEx to Combo" width="300" height="181" /></a><p class="wp-caption-text">Screen Shot : Pop-up DialogEx to Combo</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>And please leave a comment if you download this file.</p>
<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=DialogEx%20to%20Combo&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F04%2Fdialogex-to-combo%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/04/dialogex-to-combo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Combo Items On-The-Fly</title>
		<link>http://amstudio.azman.info/2009/03/03/combo-items-on-the-fly/</link>
		<comments>http://amstudio.azman.info/2009/03/03/combo-items-on-the-fly/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 19:23:28 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[AMS Samples]]></category>
		<category><![CDATA[Autoplay Media Studio Samples]]></category>
		<category><![CDATA[Button Object]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[String]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=113</guid>
		<description><![CDATA[We&#8217;ve seen how to populate Combo Items by using Tables, DB and manually. This time we will use another method to add items into the Combo Box. We will populate a Combo Box by selecting any folder on the PC.  It will list all files from that folder automatically. Then, when a File is selected [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>We&#8217;ve seen how to populate Combo Items by using Tables, DB and manually. This time we will use another method to add items into the Combo Box.</p>
<p>We will populate a Combo Box by selecting any folder on the PC.  It will list all files from that folder automatically.</p>
<p>Then, when a File is selected from the listed Combo items, the File&#8217;s Attributes are shown in a Paragraph. The File can also be <strong>launched in it&#8217;s native app</strong> by clicking a Button.</p>
<p>For this example, we use more actions of Combo, String, File, Dialog, Button, Label and Paragraph.</p>
<p>By adding more features, you can turn this example into an easy-to-use FILE UTILITY.</p>
<div id="attachment_115" class="wp-caption aligncenter" style="width: 307px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/14.jpg"><img class="size-medium wp-image-115" title="14" src="http://amstudio.azman.info/wp-content/uploads/2009/03/14-297x300.jpg" alt="Screen Shot : Combo Items On-The-Fly" width="297" height="300" /></a><p class="wp-caption-text">Screen Shot : Combo Items On-The-Fly</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>Please leave a comment if you chose to download this example.</p>
<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Combo%20Items%20On-The-Fly&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F03%2Fcombo-items-on-the-fly%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/03/combo-items-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fill Combo from SQLite DB</title>
		<link>http://amstudio.azman.info/2009/03/02/fill-combo-from-sqlite-db/</link>
		<comments>http://amstudio.azman.info/2009/03/02/fill-combo-from-sqlite-db/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 06:06:03 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[AMS Samples]]></category>
		<category><![CDATA[Autoplay Media Studio Samples]]></category>
		<category><![CDATA[Paragraph]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=93</guid>
		<description><![CDATA[All of the previous examples use TABLES to populate items into Combo Boxes. This is an economical and quick method when dealing with items such as Dates, Names of Days, Names of Months, AM/PM, Gender, Number of Children, Race, Marital Status and other small list. For larger lists, we prefer to use SQLite DB. This [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>All of the previous examples use TABLES to populate items into Combo Boxes. This is an economical and quick method when dealing with items such as Dates, Names of Days, Names of Months, AM/PM, Gender, Number of Children, Race, Marital Status and other small list.</p>
<p>For larger lists, we prefer to use SQLite DB.</p>
<p>This example shows how to populate Combo from DB on program start-up and how to populate a second Combo from DB upon selection. When an item  in the second Combo is selected, data is pulled from DB and set into the Paragraph.</p>
<p>Please note that, when SQL files are located in AMS Docs Folder, it cannot be modified after compiling. To enable modifications, SQL File must be located on the writable space of user&#8217;s PC.</p>
<div id="attachment_95" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/12.jpg"><img class="size-medium wp-image-95" title="12" src="http://amstudio.azman.info/wp-content/uploads/2009/03/12-300x216.jpg" alt="Fill Combo from SQLite DB" width="300" height="216" /></a><p class="wp-caption-text">Fill Combo from SQLite DB</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>Please leave a comment when you download files from here.</p>
<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Fill%20Combo%20from%20SQLite%20DB&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F02%2Ffill-combo-from-sqlite-db%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/02/fill-combo-from-sqlite-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combo Box to Active ListBox</title>
		<link>http://amstudio.azman.info/2009/03/02/combo-box-to-active-listbox/</link>
		<comments>http://amstudio.azman.info/2009/03/02/combo-box-to-active-listbox/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 19:32:53 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Application Action]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[AMS Samples]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Autoplay Media Studio Samples]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[Paragraph]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=81</guid>
		<description><![CDATA[This example extends the previous example with an &#8220;active&#8221; ListBox. &#62; ListBox OnSelect will read a TextFile and fill the content into a Paragraph &#62; ListBox OnDoubleClick will open a Dialog Box containing Text and Image. &#62; Only 1 Dialog Box is used and will pull items on the fly. Please Login or Register to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p>
<p>This example extends the previous example with an &#8220;active&#8221; ListBox.</p>
<p>&gt; ListBox OnSelect will read a TextFile and fill the content into a Paragraph</p>
<p>&gt; ListBox OnDoubleClick will open a Dialog Box containing Text and Image.</p>
<p>&gt; Only 1 Dialog Box is used and will pull items on the fly.</p>
<div id="attachment_82" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/11.jpg"><img class="size-medium wp-image-82" title="Combo to Active Listbox" src="http://amstudio.azman.info/wp-content/uploads/2009/03/11-300x183.jpg" alt="Screen Shot : Combo to Active Listbox" width="300" height="183" /></a><p class="wp-caption-text">Screen Shot : Combo to Active Listbox</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/paragraph-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.
</p>
</p>
<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Combo%20Box%20to%20Active%20ListBox&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F02%2Fcombo-box-to-active-listbox%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/02/combo-box-to-active-listbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combo Box to Dialog Content On-The-Fly</title>
		<link>http://amstudio.azman.info/2009/03/01/combo-box-to-dialog-content-on-the-fly/</link>
		<comments>http://amstudio.azman.info/2009/03/01/combo-box-to-dialog-content-on-the-fly/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 13:07:23 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Application Action]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[AMS Samples]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Autoplay Media Studio Samples]]></category>
		<category><![CDATA[Button Object]]></category>
		<category><![CDATA[Label]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Paragraph]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=59</guid>
		<description><![CDATA[Our previous examples show how to call Dialogs from Combo Box. However, content are hardcoded into several DIALOGS. Lets see how to use a single Dialog Only to insert different Text and Image into it when we made a selection. Saves lots of bytes and time. The IMAGE which is set into the DIALOG PAGE [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p>
<p>Our previous examples show how to call Dialogs from Combo Box. However, content are hardcoded into several DIALOGS.</p>
<p>Lets see how to use <strong>a single Dialog Only</strong> to insert different Text and Image into it when we made a selection. Saves lots of bytes and time. The IMAGE which is set into the DIALOG PAGE will maintain its aspect ratio by using Worm&#8217;s function.</p>
<p>Also, we use  BUTTON to open relevant TEXT FILE. This method can also be used to launch all types of files either resident in AMS Source Folder or PC. It will open in its native app. Knowing this will help us very much in development.</p>
<div id="attachment_60" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/8.jpg"><img class="size-medium wp-image-60" title="Combo2DialogOnTheFly" src="http://amstudio.azman.info/wp-content/uploads/2009/03/8-300x212.jpg" alt="Screen Shot : Combo to Dialog OnTheFly" width="300" height="212" /></a><p class="wp-caption-text">Screen Shot : Combo to Dialog OnTheFly</p></div>
<p>Right-click to <a title="Combo to Dialog OnTheFly" href="http://amstudio.azman.info/wp-content/uploads/2009/03/combo2combo-v3.apz"><span style="text-decoration: underline;"><strong>Download the APZ file</strong></span></a>.
</p>
</p>
<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Combo%20Box%20to%20Dialog%20Content%20On-The-Fly&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F01%2Fcombo-box-to-dialog-content-on-the-fly%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/01/combo-box-to-dialog-content-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

