<?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: SWC&#8217;s Within SWC&#8217;s Confirmed: It Works!	</title>
	<atom:link href="https://jessewarden.com/2004/03/swcs-within-swcs-confirmed-it-works.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2004/03/swcs-within-swcs-confirmed-it-works.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Tue, 20 Jul 2004 21:59:36 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Paul		</title>
		<link>https://jessewarden.com/2004/03/swcs-within-swcs-confirmed-it-works.html/comment-page-1#comment-1560</link>

		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Tue, 20 Jul 2004 21:59:36 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=487#comment-1560</guid>

					<description><![CDATA[I&#039;ve been looking around for a while, and I would really appreciate any help you can give me.

I&#039;ve been looking for a way to set the loading order of classes. In other words, I have a class ( lets say scrollPane ) that uses another class ( lets say scrollbar ). I need to set the scrollbar class to load before the scrollpane class, and I&#039;m really stuck. I used to use #initclip, but this does not work in class files.

If there is any help you can give me, I would REALLY appreciate it.

Thanks,

Paul
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been looking around for a while, and I would really appreciate any help you can give me.</p>
<p>I&#8217;ve been looking for a way to set the loading order of classes. In other words, I have a class ( lets say scrollPane ) that uses another class ( lets say scrollbar ). I need to set the scrollbar class to load before the scrollpane class, and I&#8217;m really stuck. I used to use #initclip, but this does not work in class files.</p>
<p>If there is any help you can give me, I would REALLY appreciate it.</p>
<p>Thanks,</p>
<p>Paul</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2004/03/swcs-within-swcs-confirmed-it-works.html/comment-page-1#comment-1559</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Thu, 22 Apr 2004 21:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=487#comment-1559</guid>

					<description><![CDATA[You might want to ASV (ActionScript Viewer) the source, and see if the #initclip order is changed or not; maybe since Flash see&#039;s the other one, it causes it to be off.  I doubt duped classes is the problem, but rather init order.]]></description>
			<content:encoded><![CDATA[<p>You might want to ASV (ActionScript Viewer) the source, and see if the #initclip order is changed or not; maybe since Flash see&#8217;s the other one, it causes it to be off.  I doubt duped classes is the problem, but rather init order.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Justin		</title>
		<link>https://jessewarden.com/2004/03/swcs-within-swcs-confirmed-it-works.html/comment-page-1#comment-1558</link>

		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Thu, 22 Apr 2004 21:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=487#comment-1558</guid>

					<description><![CDATA[The problem I&#039;ve had with SWCs in SWCs, is later when you need to have that same &quot;SWC&quot; used by itself somewhere else in your .fla.  For example, if you have a SWC with a Button or Combo box component embedded, then you need to use a Button or ComboBox somewhere else in the .fla.  This caused *really strange things to happen, and I had to opt out of the SWC within a SWC campaign.  I either now compile the source comp (not the swc) in with my SWC, or just document the dependancy.]]></description>
			<content:encoded><![CDATA[<p>The problem I&#8217;ve had with SWCs in SWCs, is later when you need to have that same &#8220;SWC&#8221; used by itself somewhere else in your .fla.  For example, if you have a SWC with a Button or Combo box component embedded, then you need to use a Button or ComboBox somewhere else in the .fla.  This caused *really strange things to happen, and I had to opt out of the SWC within a SWC campaign.  I either now compile the source comp (not the swc) in with my SWC, or just document the dependancy.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2004/03/swcs-within-swcs-confirmed-it-works.html/comment-page-1#comment-1557</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Thu, 01 Apr 2004 17:06:46 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=487#comment-1557</guid>

					<description><![CDATA[Well, there are 2 problems with that.

First, this:

import mx.controls.Button

private var my_b:Button;

Does NOT export the Button class you think... it&#039;s using Flash&#039; intrinsic Button class.  That was strike #1.

#2, I thought that this:

import mx.controls.Label;

private var my_lbl:Label;

Exported the class to the SWC, but I don&#039;t know who or what figured that they just wanted for the base class. I consider both of the above explicit references to the class, therefore, Flash should export it, but it wasn&#039;t happening.  #2 is iffy, because I don&#039;t know where the problem was in my case.]]></description>
			<content:encoded><![CDATA[<p>Well, there are 2 problems with that.</p>
<p>First, this:</p>
<p>import mx.controls.Button</p>
<p>private var my_b:Button;</p>
<p>Does NOT export the Button class you think&#8230; it&#8217;s using Flash&#8217; intrinsic Button class.  That was strike #1.</p>
<p>#2, I thought that this:</p>
<p>import mx.controls.Label;</p>
<p>private var my_lbl:Label;</p>
<p>Exported the class to the SWC, but I don&#8217;t know who or what figured that they just wanted for the base class. I consider both of the above explicit references to the class, therefore, Flash should export it, but it wasn&#8217;t happening.  #2 is iffy, because I don&#8217;t know where the problem was in my case.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Burch		</title>
		<link>https://jessewarden.com/2004/03/swcs-within-swcs-confirmed-it-works.html/comment-page-1#comment-1556</link>

		<dc:creator><![CDATA[Greg Burch]]></dc:creator>
		<pubDate>Thu, 01 Apr 2004 16:46:15 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=487#comment-1556</guid>

					<description><![CDATA[Yea having just an import statement will not do anything you have to reference the class somewhere in your code.]]></description>
			<content:encoded><![CDATA[<p>Yea having just an import statement will not do anything you have to reference the class somewhere in your code.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
