<?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; Application Action</title>
	<atom:link href="http://amstudio.azman.info/category/application-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>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/application-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 Slide Show</title>
		<link>http://amstudio.azman.info/2009/03/02/combo-box-to-slide-show/</link>
		<comments>http://amstudio.azman.info/2009/03/02/combo-box-to-slide-show/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 17:56:37 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Application Action]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[SlideShow]]></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>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=70</guid>
		<description><![CDATA[This example shows how to use Combo Box to insert and arrange IMAGES into groups of Slide Shows. Right-click to Download the APZ file.]]></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 shows how to use Combo Box to insert and arrange IMAGES into groups of Slide Shows.</p>
<div id="attachment_73" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/9.jpg"><img class="size-medium wp-image-73" title="Combo to Slide Show" src="http://amstudio.azman.info/wp-content/uploads/2009/03/9-300x214.jpg" alt="Screen Shot : Combo to Slide Show" width="300" height="214" /></a><p class="wp-caption-text">Screen Shot : Combo to Slide Show</p></div>
<p>Right-click to <a title="Combo to Slideshow" href="http://amstudio.azman.info/wp-content/uploads/2009/03/combo2slideshow.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%20Slide%20Show&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F02%2Fcombo-box-to-slide-show%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-slide-show/feed/</wfw:commentRss>
		<slash:comments>1</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>
		<item>
		<title>Combo Box to Combo Box to Dialog</title>
		<link>http://amstudio.azman.info/2009/03/01/combo-box-to-combo-box-to-dialog/</link>
		<comments>http://amstudio.azman.info/2009/03/01/combo-box-to-combo-box-to-dialog/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 18:13:50 +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[AMS Samples]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Autoplay Media Studio Samples]]></category>
		<category><![CDATA[Button Object]]></category>
		<category><![CDATA[Tables]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=42</guid>
		<description><![CDATA[This example combines the examples we had posted earlier to make a Basic Digital Album. This time, a BUTTON pulls data from COMBO BOX 2 to launch a DIALOG BOX containing photo. We also use Application.SetDialogProperties to change the title of each DIALOG on-the-fly. Please note how we use TABLES to fill data. Right-click 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 combines the examples we had posted earlier to make a Basic Digital Album.</p>
<p>This time, a BUTTON pulls data from COMBO BOX 2 to launch a DIALOG BOX containing photo.</p>
<p>We also use Application.SetDialogProperties to change the title of each DIALOG on-the-fly.</p>
<p>Please note how we use TABLES to fill data.</p>
<div id="attachment_44" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/5.jpg"><img class="size-medium wp-image-44" title="Combo2Combo2Dialog" src="http://amstudio.azman.info/wp-content/uploads/2009/03/5-300x290.jpg" alt="Screen Shot : Combo &gt; Combo &gt; Dialog" width="300" height="290" /></a><p class="wp-caption-text">Screen Shot : Combo &gt; Combo &gt; Dialog</p></div>
<p>Right-click to <span style="text-decoration: underline;"><strong><a title="Combo to Combo to Dialog" href="http://amstudio.azman.info/wp-content/uploads/2009/03/combo2combo-v2.apz">Download the APZ file</a></strong></span>.</p>
<p>Feel free to comment.
</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%20Combo%20Box%20to%20Dialog&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F01%2Fcombo-box-to-combo-box-to-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/03/01/combo-box-to-combo-box-to-dialog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

