<?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: TextMate ActionScript 3 and Flex Bundles</title>
	<atom:link href="http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/</link>
	<description>Flash, Flex and TextMate</description>
	<lastBuildDate>Thu, 04 Mar 2010 23:56:07 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ryan</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-3/#comment-17245</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 17 Feb 2010 21:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-17245</guid>
		<description>&lt;p&gt;each[underscore]text[underscore]file&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>each[underscore]text[underscore]file</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-3/#comment-17244</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 17 Feb 2010 21:19:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-17244</guid>
		<description>&lt;p&gt;The code above striped my underscores.  It should read 
&lt;pre&gt;
each&lt;em&gt;text&lt;/em&gt;file
&lt;/pre&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The code above striped my underscores.  It should read 
<pre>
each<em>text</em>file
</pre></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-3/#comment-17243</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 17 Feb 2010 21:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-17243</guid>
		<description>&lt;p&gt;A heads up...the reason the newest Textmate update broke the Import Class command was because the Textmate.each&lt;em&gt;text&lt;/em&gt;file implementation changed.  In order to get it working again (and to avoid altering the textmate.rb file) I added the following function do source_tools.rb&lt;/p&gt;

&lt;p&gt;def self.each&lt;em&gt;text&lt;/em&gt;file (&amp;block)
     project&lt;em&gt;dir = ENV[&#039;TM&lt;/em&gt;PROJECT&lt;em&gt;DIRECTORY&#039;]
     current&lt;/em&gt;file = ENV[&#039;TM_FILEPATH&#039;]&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; if project_dir then
   TextMate.scan_dir(project_dir, block, TextMate::ProjectFileFilter.new)
 elsif current_file then
   block.call(current_file)
 end
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;end&lt;/p&gt;

&lt;p&gt;I then changed line 40 from TextMate.each&lt;em&gt;text&lt;/em&gt;file do &#124;file&#124;  to each&lt;em&gt;text&lt;/em&gt;file do &#124;file&#124;&lt;/p&gt;

&lt;p&gt;That should do the trick for anyone that is having issues with the latest cutting edge release.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>A heads up&#8230;the reason the newest Textmate update broke the Import Class command was because the Textmate.each<em>text</em>file implementation changed.  In order to get it working again (and to avoid altering the textmate.rb file) I added the following function do source_tools.rb</p>

<p>def self.each<em>text</em>file (&amp;block)
     project<em>dir = ENV['TM</em>PROJECT<em>DIRECTORY']
     current</em>file = ENV['TM_FILEPATH']</p>

<pre><code> if project_dir then
   TextMate.scan_dir(project_dir, block, TextMate::ProjectFileFilter.new)
 elsif current_file then
   block.call(current_file)
 end
</code></pre>

<p>end</p>

<p>I then changed line 40 from TextMate.each<em>text</em>file do |file|  to each<em>text</em>file do |file|</p>

<p>That should do the trick for anyone that is having issues with the latest cutting edge release.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Auto-generate getter / setter of ActionScript 3 in TextMate &#171; makzan / blog</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-3/#comment-16593</link>
		<dc:creator>Auto-generate getter / setter of ActionScript 3 in TextMate &#171; makzan / blog</dc:creator>
		<pubDate>Sun, 31 Jan 2010 07:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-16593</guid>
		<description>&lt;p&gt;[...] last, thanks nesium.com for the as2 version of accessors generation and thanks Simon Gregory for the actionscript 3 TextMate [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] last, thanks nesium.com for the as2 version of accessors generation and thanks Simon Gregory for the actionscript 3 TextMate [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Thach Duong</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-3/#comment-16363</link>
		<dc:creator>Thach Duong</dc:creator>
		<pubDate>Tue, 26 Jan 2010 06:35:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-16363</guid>
		<description>&lt;p&gt;can you improve the Flex Bundle . At this time, flex code completion can&#039;t  recognize an Custom MXML Component and xmlns.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>can you improve the Flex Bundle . At this time, flex code completion can&#8217;t  recognize an Custom MXML Component and xmlns.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-2/#comment-15360</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 28 Dec 2009 21:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-15360</guid>
		<description>&lt;p&gt;Hi Simon,&lt;/p&gt;

&lt;p&gt;Any idea of why the newest Textmate update broke the auto import of classes in the project? (apple + shift + i)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Simon,</p>

<p>Any idea of why the newest Textmate update broke the auto import of classes in the project? (apple + shift + i)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-2/#comment-14611</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Wed, 09 Dec 2009 15:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-14611</guid>
		<description>&lt;p&gt;My file is recognized as AS3, and I´m able to use the code complete provided by your bundle.&lt;/p&gt;

&lt;p&gt;But as Michael Narciso comments, the color syntax does not work.&lt;/p&gt;

&lt;p&gt;Switching to AS2 gives me a nice color syntax, but unfortunately I´m working with AS3.  ;)&lt;/p&gt;

&lt;p&gt;Simon, would you be so kind and help me out here? :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>My file is recognized as AS3, and I´m able to use the code complete provided by your bundle.</p>

<p>But as Michael Narciso comments, the color syntax does not work.</p>

<p>Switching to AS2 gives me a nice color syntax, but unfortunately I´m working with AS3.  ;)</p>

<p>Simon, would you be so kind and help me out here? :)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: JOsH Lindsay</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-2/#comment-13102</link>
		<dc:creator>JOsH Lindsay</dc:creator>
		<pubDate>Sat, 17 Oct 2009 06:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-13102</guid>
		<description>&lt;p&gt;Rock on, I agree, Flash Develop, Flex Builder/eclipse SDK, seems to be to heavy for the most part.  Although, I as much as I like textmate there are still much to be desired from it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Rock on, I agree, Flash Develop, Flex Builder/eclipse SDK, seems to be to heavy for the most part.  Although, I as much as I like textmate there are still much to be desired from it.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-2/#comment-11997</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 06 Sep 2009 18:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-11997</guid>
		<description>&lt;p&gt;Hi&lt;/p&gt;

&lt;p&gt;Thanks so much for the AS3 Bundle.&lt;/p&gt;

&lt;p&gt;I&#039;m currently having problems with the reliability of linking to the Documentation (docs).&lt;/p&gt;

&lt;p&gt;I&#039;ve followed your instruction meticulously:&lt;/p&gt;

&lt;p&gt;My docs folder is as advised, in the Flex SDK directory. It occassionally works and then occassionally tells me that:&lt;/p&gt;

&lt;p&gt;Search failed for “NetConnection”  (or whichever class name).&lt;/p&gt;

&lt;p&gt;I do not have the Flash authoring application installed as I&#039;m trying to use only TextMate with the Flex SDK.&lt;/p&gt;

&lt;p&gt;The instructions below the above message then seem different to those provided in the TextMate As3 Bundle &#039;docs&#039; help where by it states a path that wuld suggest I have Flash installed.&lt;/p&gt;

&lt;p&gt;The advise for setting the search path manually may also be referencing something that&#039;s installed with Flash as a search for &#039;help_toc.xml&#039; returns nothing :-(&lt;/p&gt;

&lt;p&gt;I hope this is the most relevant area of your site to post this thread. If not I apologise.&lt;/p&gt;

&lt;p&gt;A reply with regards to correctly CTRL-H linking to the docs would be really helpful.&lt;/p&gt;

&lt;p&gt;Many thanks in advance&lt;/p&gt;

&lt;p&gt;David&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi</p>

<p>Thanks so much for the AS3 Bundle.</p>

<p>I&#8217;m currently having problems with the reliability of linking to the Documentation (docs).</p>

<p>I&#8217;ve followed your instruction meticulously:</p>

<p>My docs folder is as advised, in the Flex SDK directory. It occassionally works and then occassionally tells me that:</p>

<p>Search failed for “NetConnection”  (or whichever class name).</p>

<p>I do not have the Flash authoring application installed as I&#8217;m trying to use only TextMate with the Flex SDK.</p>

<p>The instructions below the above message then seem different to those provided in the TextMate As3 Bundle &#8216;docs&#8217; help where by it states a path that wuld suggest I have Flash installed.</p>

<p>The advise for setting the search path manually may also be referencing something that&#8217;s installed with Flash as a search for &#8216;help_toc.xml&#8217; returns nothing :-(</p>

<p>I hope this is the most relevant area of your site to post this thread. If not I apologise.</p>

<p>A reply with regards to correctly CTRL-H linking to the docs would be really helpful.</p>

<p>Many thanks in advance</p>

<p>David</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ivan</title>
		<link>http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/comment-page-2/#comment-11968</link>
		<dc:creator>ivan</dc:creator>
		<pubDate>Fri, 04 Sep 2009 21:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.simongregory.com/10/textmate-actionscript-3-and-flex-bundles/#comment-11968</guid>
		<description>&lt;p&gt;hello all,
I see a lot of people here talking about the autocompletion.
Unfortunately I can&#039;t see it working.
I&#039;m used to work on Xcode with definition files and a projet template that tells where the compiler is.
That config rocks, the autocompletion works with actionscript built in function, plus the local variables and function names.
Is it possible to achieve this with this plugins, and how ?
Currently what I have is a TextEdit with colors and a Run button, it is a bit disappointing :(&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hello all,
I see a lot of people here talking about the autocompletion.
Unfortunately I can&#8217;t see it working.
I&#8217;m used to work on Xcode with definition files and a projet template that tells where the compiler is.
That config rocks, the autocompletion works with actionscript built in function, plus the local variables and function names.
Is it possible to achieve this with this plugins, and how ?
Currently what I have is a TextEdit with colors and a Run button, it is a bit disappointing :(</p>]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.591 seconds -->
