<?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>Комментарии для FlashImp</title>
	<atom:link href="http://flashimp.ru/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://flashimp.ru</link>
	<description>Flash Implosion new generation</description>
	<lastBuildDate>Thu, 17 Jun 2010 11:03:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Комментарий на It&#8217;s Adobe :) LOL от Guest</title>
		<link>http://flashimp.ru/107#comment-634</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Thu, 17 Jun 2010 11:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=107#comment-634</guid>
		<description>да, это вот такой уровень у их продуктов последние годы =(</description>
		<content:encoded><![CDATA[<p>да, это вот такой уровень у их продуктов последние годы =(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на UINativeWindow от Александр Козловский</title>
		<link>http://flashimp.ru/101#comment-428</link>
		<dc:creator>Александр Козловский</dc:creator>
		<pubDate>Wed, 28 Apr 2010 10:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=101#comment-428</guid>
		<description>For example:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;s:WindowedApplication xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot; 
					   xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot; 
					   xmlns:mx=&quot;library://ns.adobe.com/flex/mx&quot;
					   
					   autoExit=&quot;false&quot;
					   visible=&quot;false&quot;
					   creationComplete=&quot;creationCompleteHandler();&quot;
					   &gt;
	&lt;fx:Script&gt;
		&lt;![CDATA[
			import mx.core.UIComponent;
			import mx.events.FlexEvent;
			
			public var newWindow:UINativeWindow;
			protected function creationCompleteHandler():void
			{
				nativeWindow.close();
				
				const options:NativeWindowInitOptions = new NativeWindowInitOptions();
				options.systemChrome = NativeWindowSystemChrome.NONE;
				
				newWindow = new UINativeWindow(options, this, new WindowedApplication()/* or new Panel() */);
				newWindow.activate();
			}

		]]&gt;
	&lt;/fx:Script&gt;
&lt;/s:WindowedApplication&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>For example:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;s:WindowedApplication</span> xmlns:fx=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> </span>
<span style="color: #000000;">					   xmlns:s=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> </span>
<span style="color: #000000;">					   xmlns:mx=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/mx&quot;</span></span>
&nbsp;
<span style="color: #000000;">					   autoExit=<span style="color: #ff0000;">&quot;false&quot;</span></span>
<span style="color: #000000;">					   visible=<span style="color: #ff0000;">&quot;false&quot;</span></span>
<span style="color: #000000;">					   creationComplete=<span style="color: #ff0000;">&quot;creationCompleteHandler();&quot;</span></span>
<span style="color: #000000;">					   <span style="color: #7400FF;">&gt;</span></span>
	<span style="color: #000000;"><span style="color: #7400FF;">&lt;fx:Script</span><span style="color: #7400FF;">&gt;</span></span>
		<span style="color: #000000;">&lt;!<span style="color: #66cc66;">&#91;</span>CDATA<span style="color: #66cc66;">&#91;</span></span>
<span style="color: #000000;">			import mx.core.UIComponent;</span>
<span style="color: #000000;">			import mx.events.FlexEvent;</span>
&nbsp;
<span style="color: #000000;">			public var newWindow:UINativeWindow;</span>
<span style="color: #000000;">			protected function creationCompleteHandler<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:void</span>
<span style="color: #000000;">			<span style="color: #66cc66;">&#123;</span></span>
<span style="color: #000000;">				nativeWindow.close<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</span>
&nbsp;
<span style="color: #000000;">				const options:NativeWindowInitOptions = new NativeWindowInitOptions<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</span>
<span style="color: #000000;">				options.systemChrome = NativeWindowSystemChrome.NONE;</span>
&nbsp;
<span style="color: #000000;">				newWindow = new UINativeWindow<span style="color: #66cc66;">&#40;</span>options, this, new WindowedApplication<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>/* or new Panel<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> */<span style="color: #66cc66;">&#41;</span>;</span>
<span style="color: #000000;">				newWindow.activate<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</span>
<span style="color: #000000;">			<span style="color: #66cc66;">&#125;</span></span>
&nbsp;
<span style="color: #000000;">		<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span><span style="color: #7400FF;">&gt;</span></span>
	<span style="color: #000000;"><span style="color: #7400FF;">&lt;/fx:Script</span><span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:WindowedApplication</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от Илья Маланьин</title>
		<link>http://flashimp.ru/39#comment-32</link>
		<dc:creator>Илья Маланьин</dc:creator>
		<pubDate>Tue, 02 Feb 2010 02:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-32</guid>
		<description>Ммм, нет, привязка к фрэймворку flex-овскому [Frame(factory)], вот что я имел в виду. Жаль что это уже чистый as3.</description>
		<content:encoded><![CDATA[<p>Ммм, нет, привязка к фрэймворку flex-овскому [Frame(factory)], вот что я имел в виду. Жаль что это уже чистый as3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от Александр Козловский</title>
		<link>http://flashimp.ru/39#comment-31</link>
		<dc:creator>Александр Козловский</dc:creator>
		<pubDate>Mon, 01 Feb 2010 13:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-31</guid>
		<description>Илья, она привязана только к &lt;a href=&quot;http://wiki.flash-ripper.com/?title=Mxmlc&quot; rel=&quot;nofollow&quot;&gt;mxmlc&lt;/a&gt; - компилятору бесплатному. Если не ошибаюсь, работая в идее, работая в эклипсе (и др.), мы по-любому компилируем им. Просто IDE не понимает метадату - это проблема, но предположу, решаемая.</description>
		<content:encoded><![CDATA[<p>Илья, она привязана только к <a href="http://wiki.flash-ripper.com/?title=Mxmlc" rel="nofollow">mxmlc</a> &#8211; компилятору бесплатному. Если не ошибаюсь, работая в идее, работая в эклипсе (и др.), мы по-любому компилируем им. Просто IDE не понимает метадату &#8211; это проблема, но предположу, решаемая.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от Илья Маланьин</title>
		<link>http://flashimp.ru/39#comment-30</link>
		<dc:creator>Илья Маланьин</dc:creator>
		<pubDate>Wed, 27 Jan 2010 20:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-30</guid>
		<description>Ох как было бы здорово, если бы вся эта красота не была привязана настолько жестко к флексу. :(</description>
		<content:encoded><![CDATA[<p>Ох как было бы здорово, если бы вся эта красота не была привязана настолько жестко к флексу. <img src='http://flashimp.ru/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от Александр Козловский</title>
		<link>http://flashimp.ru/39#comment-29</link>
		<dc:creator>Александр Козловский</dc:creator>
		<pubDate>Thu, 24 Dec 2009 10:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-29</guid>
		<description>Ну можно конечно брать лэйбл второго кадра прелоудера, типа:
&lt;pre lang=&quot;actionscript3&quot;&gt;
String(currentLabels[1].name).split(&#039;_&#039;).join(&#039;.&#039;);
&lt;/pre&gt;
Но, где-то я напарывался на косяки, при таком раскладе. Как вспомню конкретику, напишу.</description>
		<content:encoded><![CDATA[<p>Ну можно конечно брать лэйбл второго кадра прелоудера, типа:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #004993;">String</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">currentLabels</span><span style="color: #000000;">&#91;</span><span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#93;</span>.<span style="color: #004993;">name</span><span style="color: #000000;">&#41;</span>.<span style="color: #004993;">split</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">'_'</span><span style="color: #000000;">&#41;</span>.<span style="color: #004993;">join</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">'.'</span><span style="color: #000000;">&#41;</span>;</pre></div></div>

<p>Но, где-то я напарывался на косяки, при таком раскладе. Как вспомню конкретику, напишу.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от etc</title>
		<link>http://flashimp.ru/39#comment-28</link>
		<dc:creator>etc</dc:creator>
		<pubDate>Thu, 24 Dec 2009 09:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-28</guid>
		<description>Аа, тут один и тот же прелоадер для всех проектов. Ну у нас, например, берет имя класса в super.currentScene.labels.</description>
		<content:encoded><![CDATA[<p>Аа, тут один и тот же прелоадер для всех проектов. Ну у нас, например, берет имя класса в super.currentScene.labels.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от Александр Козловский</title>
		<link>http://flashimp.ru/39#comment-27</link>
		<dc:creator>Александр Козловский</dc:creator>
		<pubDate>Thu, 24 Dec 2009 06:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-27</guid>
		<description>А что ты предлагаешь дать describeType в качестве аргумента?</description>
		<content:encoded><![CDATA[<p>А что ты предлагаешь дать describeType в качестве аргумента?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от etc</title>
		<link>http://flashimp.ru/39#comment-26</link>
		<dc:creator>etc</dc:creator>
		<pubDate>Thu, 24 Dec 2009 06:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-26</guid>
		<description>Собственно, describeType же выдаёт метаданные, не нужен ClassExplorer.</description>
		<content:encoded><![CDATA[<p>Собственно, describeType же выдаёт метаданные, не нужен ClassExplorer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от Александр Козловский</title>
		<link>http://flashimp.ru/39#comment-25</link>
		<dc:creator>Александр Козловский</dc:creator>
		<pubDate>Wed, 23 Dec 2009 20:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-25</guid>
		<description>currentLabels - тоже кастыль. Ибо если у нас проект состоит из чисто-АС3 и флексовых модулей это решение не годится.
Вообще, в одном из следующих постов будет серьезное усложнение описанной системы. Там же будет мой метод поиска метадаты. (ClassExplorer я прикрутил для простоты. Еслиб опубликовал свой метод, пост был бы еще в два раза больше)).
Спасибо:)</description>
		<content:encoded><![CDATA[<p>currentLabels &#8211; тоже кастыль. Ибо если у нас проект состоит из чисто-АС3 и флексовых модулей это решение не годится.<br />
Вообще, в одном из следующих постов будет серьезное усложнение описанной системы. Там же будет мой метод поиска метадаты. (ClassExplorer я прикрутил для простоты. Еслиб опубликовал свой метод, пост был бы еще в два раза больше)).<br />
Спасибо:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Preloading in three frames system. от etc</title>
		<link>http://flashimp.ru/39#comment-24</link>
		<dc:creator>etc</dc:creator>
		<pubDate>Wed, 23 Dec 2009 18:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=39#comment-24</guid>
		<description>Я бы обратил внимание на то, что лежит в currentLabels :)
Это вместо прикручивания кирпича в виде ClassExplorer :)</description>
		<content:encoded><![CDATA[<p>Я бы обратил внимание на то, что лежит в currentLabels <img src='http://flashimp.ru/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Это вместо прикручивания кирпича в виде ClassExplorer <img src='http://flashimp.ru/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Machinarium от zurkis</title>
		<link>http://flashimp.ru/11#comment-6</link>
		<dc:creator>zurkis</dc:creator>
		<pubDate>Tue, 24 Nov 2009 00:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=11#comment-6</guid>
		<description>Обалденно!!</description>
		<content:encoded><![CDATA[<p>Обалденно!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Pixel Bender batch compiler runner от Tweets that mention Pixel Bender batch compiler runner « FlashImp -- Topsy.com</title>
		<link>http://flashimp.ru/21#comment-5</link>
		<dc:creator>Tweets that mention Pixel Bender batch compiler runner « FlashImp -- Topsy.com</dc:creator>
		<pubDate>Mon, 23 Nov 2009 15:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://flashimp.ru/?p=21#comment-5</guid>
		<description>[...] This post was mentioned on Twitter by Aleksandr Kozlovskij, Ilja Segeda. Ilja Segeda said: RT @fizzer: New post on Flash Implosion: &quot;Pixel Bender batch compiler runner&quot; http://flashimp.ru/21 [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Aleksandr Kozlovskij, Ilja Segeda. Ilja Segeda said: RT @fizzer: New post on Flash Implosion: &quot;Pixel Bender batch compiler runner&quot; <a href="http://flashimp.ru/21" rel="nofollow">http://flashimp.ru/21</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

