<?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; TextFile Action</title>
	<atom:link href="http://amstudio.azman.info/category/textfile-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>Search Image Utility : Drill Down</title>
		<link>http://amstudio.azman.info/2009/06/10/search-image-utility-drill-down/</link>
		<comments>http://amstudio.azman.info/2009/06/10/search-image-utility-drill-down/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 03:58:09 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<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[Image]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Radio Button]]></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[Search Image Utility Drill Down]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=819</guid>
		<description><![CDATA[Hi, We need to improve the Search Image Utility slightly before we go forward and insert it to our Mini Email Address Book. The previous examples shows how to search the whole selected drive. This time, we can drill down and choose our search to specific folder. This way, we don&#8217;t need to search the [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>We need to improve the Search Image Utility slightly before we go forward and insert it to our Mini Email Address Book. The previous examples shows how to search the whole selected drive. This time, we can drill down and choose our search to specific folder. This way, we don&#8217;t need to search the whole drives everytime. <strong>Now we have more control of our search.</strong></p>
<p>If you check the screen shot below, you&#8217;ll see I&#8217;ve added 2 Buttons, 1 Check Box and an additional Label.</p>
<div id="attachment_820" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil1.jpg"><img class="size-medium wp-image-820" title="searchimageutil1" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil1-300x274.jpg" alt="Search Image Utility" width="300" height="274" /></a><p class="wp-caption-text">Search Image Utility</p></div>
<p>The <strong>Refresh Button</strong> :  refreshes any new storage media that was just inserted such as Thumbdrive and etc. It also clears the Selected Folder Path Flat Input Box.</p>
<p>The <strong>Folder Button</strong> : opens a Dialog of Folders within the Selected Drive. Select a Folder. The path will appear in the Flat Input Box. This input box is Read Only. So you can&#8217;t delete what you selected by typing into it. To delete it, you have to use REFRESH BUTTON. To choose another folder, just click the FOLDER BUTTON again.</p>
<p>The <strong>Check Box</strong> &#8220;Keep Previous Search&#8221; : will let you keep previous search in the Search Result ListBox. This is useful for doing lots of searches, trim what you dont need and save into specific Groups. This is where the new Label comes into play.</p>
<p>The <strong>Label &#8220;FOUND&#8221;</strong> : shows the total number of items found in the latest search.</p>
<p>The <strong>Label &#8220;TOTAL&#8221;</strong> : shows the total number of items in the ListBox.</p>
<div id="attachment_821" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil2.jpg"><img class="size-medium wp-image-821" title="searchimageutil2" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchimageutil2-300x273.jpg" alt="Search Image Utility" width="300" height="273" /></a><p class="wp-caption-text">Search Image Utility : Folder Drill Down</p></div>
<p>For the purpose of the Mini Email Address Book, the Image Size I plan to use are normally small. We have the choice of using our favourite Image Editing Tool. If we need to embed a <strong>basic image editing console</strong>, then the use of DLLs is unavoidable. So in the next article, I&#8217;ll be using some DLLs to :<br />
1. Rotate Image<br />
2. Resize Image<br />
3. Crop Image</p>
<p>I will maintain the Images&#8217; Aspect Ratio and then Save the Images into its special folder just for the Mini Email Address Book.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-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 choose to download this example.</p>
<p>WARNING : This example needs advance familiarity with AMS objects and actions. Cut and paste will not help in improving your skills.  You need substantial understanding to place Error Check functions in the scripts. Advance skills is also needed if you plan to improve this example and repair my mistakes. SO&#8230;. if you are not familiar with AMS object and actions, please dig and understand Basic Examples I have posted earlier.  And use the HELP FILE as reference.</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%20%3A%20Drill%20Down&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F06%2F10%2Fsearch-image-utility-drill-down%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/10/search-image-utility-drill-down/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Search Image Utility &amp; SlideShow</title>
		<link>http://amstudio.azman.info/2009/06/08/search-image-utility-slideshow/</link>
		<comments>http://amstudio.azman.info/2009/06/08/search-image-utility-slideshow/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 18:25:14 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[LUA]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Radio Button]]></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[Search Image Utility with Slide Show]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=811</guid>
		<description><![CDATA[Hi, I noticed a lot of downloads for the Basic SlideShow. Safe to say that the posted sample is quite useful indeed. Thanks for downloading, but where are the comments? Even short comments would be much appreciated. As promised, here&#8217;s the Search Image Utility with a SlideShow feature, alongwith of the Thumblist feature. From the [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I noticed a lot of downloads for the Basic SlideShow. Safe to say that the posted sample is quite useful indeed. Thanks for downloading, but where are the comments? Even short comments would be much appreciated.</p>
<p>As promised, here&#8217;s the Search Image Utility with a SlideShow feature, alongwith of the Thumblist feature.</p>
<p>From the ScreenShot below, you will notice I&#8217;ve added a Slide Show button to the project. OnClick, a Temp Table is created by collecting info from the ListBox. Then the same action opens a DialogEx with a SlideShow object. OnShow, the DialogEx collects info from the Temp Table and inserts them (image path) into the SlideShow object. No big deal. The Temp Table is the KEY. It bridges info between objects. <strong>AMS &amp; LUA rulez !!!!</strong></p>
<div id="attachment_813" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow.jpg"><img class="size-medium wp-image-813" title="searchslideshow" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow-300x275.jpg" alt="Search Image with SlideShow" width="300" height="275" /></a><p class="wp-caption-text">Search Image with SlideShow</p></div>
<p>Your Search Results can be seen in a SlideShow. And if you select a Saved Groups, you can view a SlideShow of it as well ( shown on the screen shot below ). AND &#8230;&#8230;&#8230;&#8230;if you tweak this example further with <strong>RETESET&#8217;s, SSIDE&#8217;s, UPETER&#8217;s, WORM&#8217;s </strong>&amp;<strong> DERMOT&#8217;s plugins</strong>, you&#8217;ll amazed yourself with a feature-rich Electronic Album.</p>
<div id="attachment_814" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow2.jpg"><img class="size-medium wp-image-814" title="searchslideshow2" src="http://amstudio.azman.info/wp-content/uploads/2009/06/searchslideshow2-300x226.jpg" alt="Search Image Utility with Slide Show" width="300" height="226" /></a><p class="wp-caption-text">Search Image Utility with Slide Show</p></div>
<p>Finally, if you plan to distribute APPs developed from project examples in this blog, PLEASE INCLUDE ERROR CHECK FUNCTION for each AMS action. It&#8217;s your responsibility to do that. Most of my examples are without error checking for the sake of clarity.</p>
<p>Please leave your comments in this blog.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-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%20%26%23038%3B%20SlideShow&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F06%2F08%2Fsearch-image-utility-slideshow%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/08/search-image-utility-slideshow/feed/</wfw:commentRss>
		<slash:comments>3</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/textfile-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>Search File Utility With Status Dialog</title>
		<link>http://amstudio.azman.info/2009/05/27/search-file-utility-with-status-dialog/</link>
		<comments>http://amstudio.azman.info/2009/05/27/search-file-utility-with-status-dialog/#comments</comments>
		<pubDate>Wed, 27 May 2009 11:51:22 +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[ListBox]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[Status Dialog]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Search Utility]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=762</guid>
		<description><![CDATA[Hi, The previous example on Search Function exposes the basic capability only. It shows basic SEARCH concepts for Newbies. But I dare not use this very raw function even on my PC. More features are needed before it can be distributed. In this example, we refine the AMS Search Function further. This time, we can [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>The previous example on Search Function exposes the basic capability only. It shows basic SEARCH concepts for Newbies. <strong>But I dare not use this very raw function even on my PC.</strong> More features are needed before it can be distributed.</p>
<p>In this example, we refine the AMS Search Function further. This time, we can decide on what to do with the search results.<br />
- We can save the results and group them.<br />
- We can weed out irrelevant items.<br />
- We can resave the modified list.<br />
- We can reload previous search results or<br />
- We dont have to keep the results at all.</p>
<p>With AMS, we can develop APPs according to our own delight and satisfaction. </p>
<div id="attachment_765" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchutility.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchutility-300x274.jpg" alt="Improved Search Utility" title="searchutility" width="300" height="274" class="size-medium wp-image-765" /></a><p class="wp-caption-text">Improved Search Utility</p></div>
<p>For this purpose, our Project will now create a HOST FOLDER on the desktop automatically. It will save the search results there according to groups. Each group has it&#8217;s own text file. You can change the location of the FOLDER.</p>
<div id="attachment_766" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchutility2.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchutility2-300x275.jpg" alt="Improved Search Utility" title="searchutility2" width="300" height="275" class="size-medium wp-image-766" /></a><p class="wp-caption-text">Improved Search Utility</p></div>
<p>If the search resulted in hundreds of files, the LISTING of RESULTS in the ListBox may take some time. Our users may think that the APP has HANGED ( I dont know the right word ). This is not good for business. </p>
<div id="attachment_767" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/searchutility3.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/searchutility3-300x275.jpg" alt="Improved Search Utility" title="searchutility3" width="300" height="275" class="size-medium wp-image-767" /></a><p class="wp-caption-text">Improved Search Utility</p></div><br />
So, I&#8217;ve added <strong>STATUS DIALOG when SAVING FILES and LISTING FILES</strong>. When users see STATUS DIALOGS, they will be comfortable to know that the APP is doing something. For the FILE SEARCH, I prefer to use the File.Find built-in Callback function instead of my own FileFound function. Very efficient.</p>
<p>Lastly, it is your responsibility to add ERROR CHECKING for each AMS ACTIONS. </p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.
<p>PLEASE LEAVE A COMMENT&#8230;..</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%20File%20Utility%20With%20Status%20Dialog&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F05%2F27%2Fsearch-file-utility-with-status-dialog%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/27/search-file-utility-with-status-dialog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ListBox &amp; TextFile Interactions &#8211; Validation</title>
		<link>http://amstudio.azman.info/2009/05/07/listbox-textfile-interactions-validation/</link>
		<comments>http://amstudio.azman.info/2009/05/07/listbox-textfile-interactions-validation/#comments</comments>
		<pubDate>Thu, 07 May 2009 10:30:59 +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[Input]]></category>
		<category><![CDATA[LUA]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Validation]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=708</guid>
		<description><![CDATA[Hi, I&#8217;m back after a very busy week up North. Let&#8217;s embed Validation function into our mini Email Address Book project. Changes must be done to the flow and therefore the scripts. But it is not that difficult to do if you understand the previous 2 samples. Once the changes were made, I can now [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dpbolvw.net/pm118y1A719PTURUQYQPRQUYTZQW" target="_blank" onmouseover="window.status='http://eset.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/jr75tkocig156362A21326A5B28" alt="ESET Smart Security - Save 25%" border="0"/></a><br />
Hi,</p>
<p>I&#8217;m back after a very busy week up North. </p>
<p>Let&#8217;s embed Validation function into our mini Email Address Book project. Changes must be done to the flow and therefore the scripts. But it is not that difficult to do if you understand the previous 2 samples. </p>
<p>Once the changes were made, I can now :<br />
1. Validate Name entry<br />
2. Validate Email entry<br />
3. Validate Group Name entry</p>
<p>Each validation uses its own PATTERN. You can set this pattern by looking at the Globals Pane. This one is real easy to do. </p>
<div id="attachment_709" class="wp-caption aligncenter" style="width: 160px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/validate1.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/validate1-150x150.jpg" alt="Validate All Entries" title="validate1" width="150" height="150" class="size-thumbnail wp-image-709" /></a><p class="wp-caption-text">Validate All Entries</p></div>
<p>I&#8217;ve made quite a few changes to our project. I&#8217;ve optimized the scripts to run faster. So you can find more functions in the Globals and less scripts in objects. I&#8217;m using a TEMP TABLE that collects data from ListBoxes and then WRITE the TextFiles from the TEMP Table. This way, I can add more features to the project ( and preparing it for SQLite Plugin as well.).</p>
<div id="attachment_710" class="wp-caption aligncenter" style="width: 160px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/validate2.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/validate2-150x150.jpg" alt="Validate Entries" title="validate2" width="150" height="150" class="size-thumbnail wp-image-710" /></a><p class="wp-caption-text">Validate Entries</p></div>
<p>If you take a look at the Screen Shot above and below, the project pops up a DialogEx for New Group Entries. This entry is also validated according to a set of PATTERNS. Once validated, I&#8217;ve also inserted the Good Old Dialog to WARN USERS about the implication of their next course of actions.</p>
<div id="attachment_711" class="wp-caption aligncenter" style="width: 160px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/validate3.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/validate3-150x150.jpg" alt="Good Old Dialog &amp; DialogEx Working together" title="validate3" width="150" height="150" class="size-thumbnail wp-image-711" /></a><p class="wp-caption-text">Good Old Dialog &#038; DialogEx Working together</p></div>
<p>Once the New Group has been named, the DialogEx is closed and brings users to the front-end. Their latest Group will be auto-selected. This is easy to do. Look under the hood as proof.</p>
<p>Also, I&#8217;ve added a function to change the name of the GROUP as shown in the Screen Shot below. In fact, what we&#8217;re doing is changing the name of the Text Files.</p>
<div id="attachment_717" class="wp-caption aligncenter" style="width: 160px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/validate4.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/validate4-150x150.jpg" alt="Change Group Name" title="validate4" width="150" height="150" class="size-thumbnail wp-image-717" /></a><p class="wp-caption-text">Change Group Name</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-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.</p>
<p><SCRIPT type="text/javascript" LANGUAGE="javascript" src="http://www.qksz.net/1e-h4m3"> </SCRIPT></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=ListBox%20%26%23038%3B%20TextFile%20Interactions%20%26%238211%3B%20Validation&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F05%2F07%2Flistbox-textfile-interactions-validation%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/07/listbox-textfile-interactions-validation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ListBox &#8211; TextFile Interactions : Search Items</title>
		<link>http://amstudio.azman.info/2009/04/23/listbox-textfile-interactions-search-items/</link>
		<comments>http://amstudio.azman.info/2009/04/23/listbox-textfile-interactions-search-items/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 19:32:53 +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[Input]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Search Utility]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=666</guid>
		<description><![CDATA[Hi, Today, I&#8217;ve added a Search function to our Mini Email Address Book. Thanks to Reteset who helped me in correcting my codes. As you can see, I did a bit of cleaning up on the interface and add more buttons, including the Search Utility in a DialogEx. You will also noticed that I used [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dpbolvw.net/pm118y1A719PTURUQYQPRQUYTZQW" target="_blank" onmouseover="window.status='http://eset.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/jr75tkocig156362A21326A5B28" alt="ESET Smart Security - Save 25%" border="0"/></a><br />
Hi,</p>
<p>Today, I&#8217;ve added a Search function to our Mini Email Address Book. Thanks to <a title="Reteset's Plugins" href="http://www.amsplugins.com" target="_blank">Reteset</a> who helped me in correcting my codes.</p>
<div id="attachment_667" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/04/emailaddressbook1.jpg"><img class="size-medium wp-image-667" title="emailaddressbook1" src="http://amstudio.azman.info/wp-content/uploads/2009/04/emailaddressbook1-300x274.jpg" alt="A Clean-up for Mini Email Address Book" width="300" height="274" /></a><p class="wp-caption-text">A Clean-up for Mini Email Address Book</p></div>
<p>As you can see, I did a bit of cleaning up on the interface and add more buttons, including the Search Utility in a DialogEx. You will also noticed that I used Labels to show Number of Items in ListBoxes. It is auto-updated whenever any change occurs in the ListBox.</p>
<p>The Search Utility searches items in a List Box. The items belong to a Group selected by a ComboBox. The Search Results are displayed in another ListBox. By using Radio Buttons, you can choose whether to accumulate the results or empty it for new results only. By using a ComboBox you can choose to Search by Text ( Name ) or by Data ( Email ). Check Screen-Shot below.</p>
<div id="attachment_668" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/04/emailaddressbook2.jpg"><img class="size-medium wp-image-668" title="emailaddressbook2" src="http://amstudio.azman.info/wp-content/uploads/2009/04/emailaddressbook2-300x212.jpg" alt="Search Utility in a DialogEx" width="300" height="212" /></a><p class="wp-caption-text">Search Utility in a DialogEx</p></div>
<p>I&#8217;ve also optimized the scripts by transforming repetitive actions into functions. In fact, there are more that can be optimized but I leave that to you. I&#8217;ve decided to not include data verification at this time.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>Upto this stage, we still use Text Files with each line containing only 2 data, i.e., one for Name and another  Email only. So you can see that our Project need much more improvements if we want more features added.</p>
<p>Also please take note that, everytime you SHARE DATA between GROUPS or MAKE NEW GROUPS from a Search, there are overlaps of GROUP members. This basically means, an ITEM with the SAME INFO  are SHARED across many groups. The problem is, when we edit the info of such item in 1 group, we also need to update the same item if it is hosted in other groups as well. This redundancy issue must be resolved.</p>
<p>The best and efficient way is to use SQLite or XML. With SQLite and XML, we can set unique IDs for every ITEM. When we edit an item which belongs to several groups, we update only once for all groups. Saves lots of time and avoids confusion. And the best thing of all is that, we can add more details for every item. We&#8217;ll see this in the next topic.<br />
<SCRIPT type="text/javascript" LANGUAGE="javascript" src="http://www.qksz.net/1e-h4m3"> </SCRIPT></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=ListBox%20%26%238211%3B%20TextFile%20Interactions%20%3A%20Search%20Items&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F04%2F23%2Flistbox-textfile-interactions-search-items%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/04/23/listbox-textfile-interactions-search-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Share Items between Text Files</title>
		<link>http://amstudio.azman.info/2009/04/19/share-items-between-text-files/</link>
		<comments>http://amstudio.azman.info/2009/04/19/share-items-between-text-files/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 19:33:40 +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[Input]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Share Items between Text Files]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=649</guid>
		<description><![CDATA[Hi, Today we&#8217;re going to enhance our Mini eMail Address Book further. We&#8217;re going to create a utility inside a DialogEx Pop-up. With this utility, we can share items between different Categories. Technically, we are transfering items between Text Files bridged by List Boxes. When we first started entering items into our Address Book, we [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dpbolvw.net/pm118y1A719PTURUQYQPRQUYTZQW" target="_blank" onmouseover="window.status='http://eset.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/jr75tkocig156362A21326A5B28" alt="ESET Smart Security - Save 25%" border="0"/></a><br />
Hi,</p>
<p>Today we&#8217;re going to enhance our Mini eMail Address Book further. We&#8217;re going to create a utility inside a  DialogEx Pop-up. With this utility, we can share items between different Categories. <strong>Technically, we are <strong>transfering items</strong> between Text Files bridged by List Boxes.</strong></p>
<p>When we first started entering items into our Address Book, we might have only 1 category with scores of email addresses. As the list grows bigger, it becomes harder for us to quickly get an email address of a person. It would be better to group these addresses into Categories. Definitely we don&#8217;t want to retype. With this utility, we save time by just transfering email addresses into preferred Categories.</p>
<div id="attachment_651" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/04/listbox-textfile-interactions-share.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/04/listbox-textfile-interactions-share-300x206.jpg" alt="Share Items between Categories" title="listbox-textfile-interactions-share" width="300" height="206" class="size-medium wp-image-651" /></a><p class="wp-caption-text">Share Items between Categories</p></div>
<p>From the above Screen Shot, you will notice I&#8217;ve placed another button called SHARE. This will open a Pop-up Dialog which contains 2 ListBoxes. Category selections are done using COMBO BOXES. We can <strong>multi-select Items</strong> in the SOURCE CATEGORY and transfer them to a TARGET CATEGORY. </p>
<p><strong>Optimization of App</strong><br />
If you check the earlier example, we have lots of scripts written. Some of them are the same and for the same purpose at different places. <strong>Such codes can be transformed into Functions and placed in the Globals.</strong> When we need to use them, just place the function name where we need them to be at. This way, we reduce codes and relieve our minds to focus more on program logic. In this example, we&#8217;ll notice that our codes are far less, yet our project feature much more enhanced.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-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.</p>
<p>In the next example, we&#8217;ll see how to enhance this project further with a <strong>Search Utility </strong>. We&#8217;ll make descriptive alerts using labels. We&#8217;ll also validate name &#038; email entries. We can also rename Categories. Thus making this simple project into a more intelligent one. It will be the last one on ListBox-TextFile Interactions.</p>
<p><strong>Heres the plan.</strong><br />
In the next series, we&#8217;ll see how to apply this project directly as a Playlist on a Media Player, a Slide Show Image sorter, a File Cataloger &#038; Launcher, a Digital Image Album, a Web Browser Book Marker and a Planner. That&#8217;s six examples in the works. Each with different objects, actions and plugins embedded to it. This section is exclusively for registered users who have made at least 5 comments in this blog.</p>
<p><strong>And here&#8217;s the next plan.</strong><br />
We want to make our apps feature-rich and even more intelligent. We&#8217;ll replace Text Files which contains only 2 items with Text Files that can hold lots of items per line. Then we will use the best alternative, i.e. SQLite Database. And for integration with Open Document Software, we&#8217;ll replace SQLite with XML.</p>
<p>More really basic examples coming. Hope I have the time.<br />
<SCRIPT type="text/javascript" LANGUAGE="javascript" src="http://www.qksz.net/1e-h4m3"> </SCRIPT></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=Share%20Items%20between%20Text%20Files&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F04%2F19%2Fshare-items-between-text-files%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/04/19/share-items-between-text-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ListBox &amp; TextFile Interactions with Categories</title>
		<link>http://amstudio.azman.info/2009/04/17/listbox-textfile-interactions-with-categories/</link>
		<comments>http://amstudio.azman.info/2009/04/17/listbox-textfile-interactions-with-categories/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 20:01:46 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Dialog]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[ListBox Text File Interactions with Categories]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=637</guid>
		<description><![CDATA[Hi, CAUTION. Please review the previous 3 LISTBOX EXAMPLES before you proceed. Otherwise, you might find this example a bit challenging. From the Screen Shot above, you will notice that I have included CATEGORIES. Download and immediately modify this example to make your own mini Web Browser with BookMarker or Mini Email Address Book. This [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.anrdoezrs.net/9p79r09608OSTQTPXPOQPTVRPTW" target="_blank" onmouseover="window.status='http://www.iclipart.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.lduhtrp.net/bk102o26v0zKOPMPLTLKMLPRNLPS" alt="iCLIPART.com" border="0"/></a><br />
Hi,</p>
<p>CAUTION. Please review the previous 3 LISTBOX EXAMPLES before you proceed. Otherwise, you might find this example a bit challenging.</p>
<div id="attachment_638" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/04/listbox-textfile-interaction-categories.jpg"><img class="size-medium wp-image-638" title="listbox-textfile-interaction-categories" src="http://amstudio.azman.info/wp-content/uploads/2009/04/listbox-textfile-interaction-categories-300x211.jpg" alt="ListBox &amp; Textfile Interactions With Categories" width="300" height="211" /></a><p class="wp-caption-text">ListBox &amp; Textfile Interactions With Categories</p></div>
<p>From the Screen Shot above, you will notice that I have included CATEGORIES. Download and immediately modify this example to make your own mini Web Browser with BookMarker or Mini Email Address Book.</p>
<p><strong>This small example is slightly more intelligent</strong><br />
I&#8217;m using a myriad of dialog box functions with if..else&#8230;loops. When you add a Category, it will search whether the Category already exist. If it does exist, it will ask you whether to overwrite or use a new Category name. You can also cancel if you decide not to save it. You can modify the Items in a Category and save them. You can have as many categories as you want. Each Category is 1 text file by itself. 10 categories means 10 text files.</p>
<p>Actions used : String, File, Input, Button, ListBox, Dialog, Text File, built-in AMS Constants, Functions</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-action/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>In the next ListBox Example we will see how to SHIFT and SHARE items between 2 Text Files ( Categories ). With this function, we reduce the need to retype the same items. After 2 additional examples, we&#8217;re in good shape for more advanced features in this project.</p>
<p><strong>IMPORTANT HIGHLIGHT</strong><br />
Upto this point, I have not used the Delimited Function to import and export items between ListBox and Text Files. To develop an advanced app where each item has many things hooked to it such as Birth Date, Address, Marital Status, Gender, Employee Number and many more, we need to use the Delimited Function plus Tables, SQLite or XML. But &#8230;&#8230; before we go that way, we MUST understand the fundamentals of how objects work at a basic level. So, do yourself a favour by running through the ListBox examples carefully. Cut &amp; paste is bad for health.</p>
<p><a href="http://www.dpbolvw.net/4q65mu2-u1HLMJMIQIHJIONKOOQ" target="_blank" onmouseover="window.status='http://www.daz3d.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.lduhtrp.net/hi117uuymsqBFGDGCKCBDCIHEIIK" alt="Free Tools and Content for 3D Artists" 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=ListBox%20%26%23038%3B%20TextFile%20Interactions%20with%20Categories&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F04%2F17%2Flistbox-textfile-interactions-with-categories%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/04/17/listbox-textfile-interactions-with-categories/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ListBox &amp; Text File Interactions</title>
		<link>http://amstudio.azman.info/2009/04/16/listbox-text-file-interactions/</link>
		<comments>http://amstudio.azman.info/2009/04/16/listbox-text-file-interactions/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 16:00:05 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Dialog]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[Text File]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=631</guid>
		<description><![CDATA[Hi, In this installment, I&#8217;m combining 2 earlier ListBox samples to make a Mini eMail Address Book. However, this example is a very basic one with no categories and no annotations for each item. Most important thing at this stage is to understand how to Import Text File Items into ListBox &#38; to Export ListBox [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.anrdoezrs.net/9p79r09608OSTQTPXPOQPTVRPTW" target="_blank" onmouseover="window.status='http://www.iclipart.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.lduhtrp.net/bk102o26v0zKOPMPLTLKMLPRNLPS" alt="iCLIPART.com" border="0"/></a><br />
Hi,</p>
<p>In this installment, I&#8217;m combining 2 earlier ListBox samples to make a Mini eMail Address Book. However, this example is a very basic one with <strong>no categories</strong> and <strong>no annotations</strong> for each item.</p>
<p>Most important thing at this stage is to understand how to <strong>Import Text File Items into ListBox</strong> &amp; to <strong>Export ListBox Items into Text File</strong>. The same basic function is used in Web Bookmarks, File Cataloger, MP3 Playlist, Photo Album, SlideShow App and etc.</p>
<p>I&#8217;ve also included some other functions, namely:<br />
-&gt; Edit or Delete Any Selected Item<br />
-&gt; Clear Listed Items<br />
-&gt; Sort Listed Items<br />
-&gt; Activate ListBox Double-Click Function to Open Default Email Software</p>
<div id="attachment_630" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/04/listbox-textfile-interactions.jpg"><img class="size-medium wp-image-630" title="listbox-textfile-interactions" src="http://amstudio.azman.info/wp-content/uploads/2009/04/listbox-textfile-interactions-300x248.jpg" alt="ListBox &amp; Text File Interactions" width="300" height="248" /></a><p class="wp-caption-text">ListBox &amp; Text File Interactions</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/textfile-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.</p>
<p><a href="http://www.dpbolvw.net/4q65mu2-u1HLMJMIQIHJIONKOOQ" target="_blank" onmouseover="window.status='http://www.daz3d.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.lduhtrp.net/hi117uuymsqBFGDGCKCBDCIHEIIK" alt="Free Tools and Content for 3D Artists" 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=ListBox%20%26%23038%3B%20Text%20File%20Interactions&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F04%2F16%2Flistbox-text-file-interactions%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/04/16/listbox-text-file-interactions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

