<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Metaliq Components and MTASC</title>
	<atom:link href="http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/feed/" rel="self" type="application/rss+xml" />
	<link>http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/</link>
	<description>lulz</description>
	<lastBuildDate>Sat, 07 Jan 2012 17:17:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: gabriel</title>
		<link>http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/comment-page-1/#comment-217</link>
		<dc:creator>gabriel</dc:creator>
		<pubDate>Sat, 03 Mar 2007 05:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/#comment-217</guid>
		<description>Mark wrote: &quot;... You not only have to import the classes, but you need to instantiate the classes or mtasc still won&#039;t include them.&quot;

You can also use the -pack directive on Mtasc to compile classes in a particular package.
For the example you provided, you might have used

mtasc -pack com/metaliq/skins/gskin1  etc...

to force the compiler to include the gskin1 package.
</description>
		<content:encoded><![CDATA[<p>Mark wrote: &#8220;&#8230; You not only have to import the classes, but you need to instantiate the classes or mtasc still won&#8217;t include them.&#8221;</p>
<p>You can also use the -pack directive on Mtasc to compile classes in a particular package.<br />
For the example you provided, you might have used</p>
<p>mtasc -pack com/metaliq/skins/gskin1  etc&#8230;</p>
<p>to force the compiler to include the gskin1 package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anon</title>
		<link>http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/comment-page-1/#comment-216</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Fri, 15 Dec 2006 01:19:56 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/#comment-216</guid>
		<description>For a commercial product, don&#039;t you think they should be coding better so it works with mtasc?
</description>
		<content:encoded><![CDATA[<p>For a commercial product, don&#8217;t you think they should be coding better so it works with mtasc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/comment-page-1/#comment-215</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 13 Dec 2006 18:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/#comment-215</guid>
		<description>You not only have to import the classes, but you need to instantiate the classes or mtasc still won&#039;t include them.
So for com.metaliq.skins.gskin1.ComboBackground:

You would import the class and do something like:

var cb:ComboBackground;
delete cb;
</description>
		<content:encoded><![CDATA[<p>You not only have to import the classes, but you need to instantiate the classes or mtasc still won&#8217;t include them.<br />
So for com.metaliq.skins.gskin1.ComboBackground:</p>
<p>You would import the class and do something like:</p>
<p>var cb:ComboBackground;<br />
delete cb;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/comment-page-1/#comment-214</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 13 Dec 2006 17:03:44 +0000</pubDate>
		<guid isPermaLink="false">http://yourpalmark.com/2006/12/12/metaliq-components-and-mtasc/#comment-214</guid>
		<description>Thank you very much for the solution. When I tried to do the same thing for a ComboBox, i got some Warnings from FlashDevelop.

Here are they..
============================================
Warning : The MovieClip com.metaliq.controls.ComboBox:ComboBackground needs the class com.metaliq.skins.gskin1.ComboBackground which was not compiled :
Please force compilation of this class by adding it to the commandline.
Warning : The MovieClip com.metaliq.controls.SmartClipList:DemoRowRenderer needs the class com.metaliq.controls.DemoRowRenderer which was not compiled :
Please force compilation of this class by adding it to the commandline.
Warning : The MovieClip com.metaliq.controls.ComboBox:ComboButton needs the class com.metaliq.controls.GraphicButton which was not compiled :
Please force compilation of this class by adding it to the commandline.
Warning : The MovieClip com.metaliq.controls.UIObject:Background needs the class com.metaliq.skins.gskin1.InsetBackground which was not compiled :
Please force compilation of this class by adding it to the commandline.
================================

I have given import commands in the Main class for the above classes. Still it gives me such warning.
</description>
		<content:encoded><![CDATA[<p>Thank you very much for the solution. When I tried to do the same thing for a ComboBox, i got some Warnings from FlashDevelop.</p>
<p>Here are they..<br />
============================================<br />
Warning : The MovieClip com.metaliq.controls.ComboBox:ComboBackground needs the class com.metaliq.skins.gskin1.ComboBackground which was not compiled :<br />
Please force compilation of this class by adding it to the commandline.<br />
Warning : The MovieClip com.metaliq.controls.SmartClipList:DemoRowRenderer needs the class com.metaliq.controls.DemoRowRenderer which was not compiled :<br />
Please force compilation of this class by adding it to the commandline.<br />
Warning : The MovieClip com.metaliq.controls.ComboBox:ComboButton needs the class com.metaliq.controls.GraphicButton which was not compiled :<br />
Please force compilation of this class by adding it to the commandline.<br />
Warning : The MovieClip com.metaliq.controls.UIObject:Background needs the class com.metaliq.skins.gskin1.InsetBackground which was not compiled :<br />
Please force compilation of this class by adding it to the commandline.<br />
================================</p>
<p>I have given import commands in the Main class for the above classes. Still it gives me such warning.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

