<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-12753102.post6196495834569001166..comments</id><updated>2009-05-11T21:53:58.571-04:00</updated><title type='text'>Comments on Ben's Journal: Flex: The Unix Geek's Ideal Flash Environment</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://benjisimon.blogspot.com/feeds/6196495834569001166/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default'/><link rel='alternate' type='text/html' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html'/><author><name>Ben Simon</name><uri>http://www.blogger.com/profile/09833753747177544979</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-12753102.post-8819885780352961080</id><published>2009-05-11T21:53:00.000-04:00</published><updated>2009-05-11T21:53:00.000-04:00</updated><title type='text'>How did you get charts.swc?
I've been looking ever...</title><content type='html'>How did you get charts.swc?&lt;br /&gt;I've been looking everywhere for the file or for  charting-source.jar.  No luck.  It's a part of flex builder 2, but no obvious linux download.&lt;br /&gt;&lt;br /&gt;Thanks.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/8819885780352961080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/8819885780352961080'/><link rel='alternate' type='text/html' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html?showComment=1242093180000#c8819885780352961080' title=''/><author><name>dzaebst</name><uri>http://www.blogger.com/profile/09386497129486548120</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html' ref='tag:blogger.com,1999:blog-12753102.post-6196495834569001166' source='http://www.blogger.com/feeds/12753102/posts/default/6196495834569001166' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-12753102.post-5140392053352342520</id><published>2008-09-20T23:29:00.000-04:00</published><updated>2008-09-20T23:29:00.000-04:00</updated><title type='text'>Hey All -Thanks for all the useful suggestions and...</title><content type='html'>Hey All -&lt;BR/&gt;&lt;BR/&gt;Thanks for all the useful suggestions and links.&lt;BR/&gt;&lt;BR/&gt;You guys all rock!&lt;BR/&gt;&lt;BR/&gt;-Ben</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/5140392053352342520'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/5140392053352342520'/><link rel='alternate' type='text/html' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html?showComment=1221967740000#c5140392053352342520' title=''/><author><name>Ben Simon</name><uri>http://www.blogger.com/profile/09833753747177544979</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='14789355258015772209'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html' ref='tag:blogger.com,1999:blog-12753102.post-6196495834569001166' source='http://www.blogger.com/feeds/12753102/posts/default/6196495834569001166' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-12753102.post-5195620969520563693</id><published>2008-09-19T13:45:00.000-04:00</published><updated>2008-09-19T13:45:00.000-04:00</updated><title type='text'>As an alternate to using fcsh..etc, you can also c...</title><content type='html'>As an alternate to using fcsh..etc, you can also create a Makefile  for your Flex project and pass the appropriate switches (-compiler.incremental -keep)to the Flex compiler. Then from emacs just type (M-x compile). With -compiler.incremental the Flex compiler does its own dependency checking and caching, as with fcsh, so the Makefile doesnt even have to be that complicated. The sample below is an extract from a larger project so has some other cruft.&lt;BR/&gt;&lt;BR/&gt;##### BOF ###########################&lt;BR/&gt;# SOURCE_FILES=$(wildcard *.mxml)&lt;BR/&gt;SOURCE_FILES=\&lt;BR/&gt;        simple/SimpleApplicationExample.mxml&lt;BR/&gt;&lt;BR/&gt;SOURCE_DEP=$(patsubst %.mxml, %, $(SOURCE_FILES))&lt;BR/&gt;&lt;BR/&gt;MX=~/bin/mx3&lt;BR/&gt;&lt;BR/&gt;SOURCE_BASE=/home/flex/flex3_dev/dev&lt;BR/&gt;&lt;BR/&gt;SOURCE_PATHS=\&lt;BR/&gt;        -compiler.source-path+=$(SOURCE_BASE)/flexmdi \&lt;BR/&gt;        -compiler.source-path+=$(SOURCE_BASE)/swc/locale/en_US&lt;BR/&gt;&lt;BR/&gt;LIB_PATHS=\&lt;BR/&gt;        -compiler.library-path+=$(SOURCE_BASE)/swc/charts.swc \&lt;BR/&gt;        -compiler.library-path+=$(SOURCE_BASE)/corelib/bin/corelib.swc&lt;BR/&gt;&lt;BR/&gt;NAMESPACES=\&lt;BR/&gt;        -namespace http://flexmdi.googlecode.com/ \&lt;BR/&gt;                   /home/flex/flex3_dev/dev/flexmdi/manifest.xml&lt;BR/&gt;&lt;BR/&gt;USE_NETWORK=-use-network=true&lt;BR/&gt;&lt;BR/&gt;FLEX_LICENSES=&lt;BR/&gt;&lt;BR/&gt;MX_FLAGS=$(SOURCE_PATHS) $(LIB_PATHS) $(NAMESPACES) \&lt;BR/&gt;        $(FLEX_LICENSES) \&lt;BR/&gt;        -benchmark \&lt;BR/&gt;        -compiler.incremental \&lt;BR/&gt;        -keep&lt;BR/&gt;&lt;BR/&gt;all: $(SOURCE_DEP)&lt;BR/&gt;&lt;BR/&gt;modules: $(MODULE_DEP)&lt;BR/&gt;&lt;BR/&gt;.PHONY: all clean&lt;BR/&gt;&lt;BR/&gt;.SECONDEXPANSION:&lt;BR/&gt;&lt;BR/&gt;SimpleApplicationExample: simple/SimpleApplicationExample&lt;BR/&gt;&lt;BR/&gt;simple/SimpleApplicationExample: $(patsubst %, %.mxml, $$@)&lt;BR/&gt;        $(MX) $(MX_FLAGS) \&lt;BR/&gt;        $(USE_NETWORK) \&lt;BR/&gt;        -compiler.source-path+=$(SOURCE_BASE)/tracer \&lt;BR/&gt;        -output $(patsubst %.mxml, ~/flex3_dev/bin/worbit/%.swf, $(notdir $&amp;lt;)) \&lt;BR/&gt;        -- $&amp;lt;&lt;BR/&gt;&lt;BR/&gt;#REMOVE_CACHES = $(if $(strip $(CACHE_DIRS)), rm -r $(CACHE_DIRS))&lt;BR/&gt;&lt;BR/&gt;CACHE_DIRS = $(strip $(foreach dep, $(SOURCE_DEP), $(wildcard $(dep)_*.cache)))&lt;BR/&gt;REMOVE_CACHES=$(if $(CACHE_DIRS), rm -rvf $(CACHE_DIRS))&lt;BR/&gt;&lt;BR/&gt;#GENERATED_DIR = $(wildcard generated)&lt;BR/&gt;#REMOVE_GENERATED = $(if $(GENERATED_DIR), rm -r $(GENERATED_DIR))&lt;BR/&gt;&lt;BR/&gt;GENERATED_DIR = $(strip $(foreach dep, $(dir $(SOURCE_DEP)), $(wildcard $(dep)generated)))&lt;BR/&gt;REMOVE_GENERATED=$(if $(GENERATED_DIR), rm -rvf $(GENERATED_DIR))&lt;BR/&gt;&lt;BR/&gt;clean:&lt;BR/&gt;        $(REMOVE_CACHES)&lt;BR/&gt;        $(REMOVE_GENERATED)&lt;BR/&gt;&lt;BR/&gt;########## EOF #############</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/5195620969520563693'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/5195620969520563693'/><link rel='alternate' type='text/html' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html?showComment=1221846300000#c5195620969520563693' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html' ref='tag:blogger.com,1999:blog-12753102.post-6196495834569001166' source='http://www.blogger.com/feeds/12753102/posts/default/6196495834569001166' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-12753102.post-7496440249228324766</id><published>2008-09-19T13:40:00.000-04:00</published><updated>2008-09-19T13:40:00.000-04:00</updated><title type='text'>they have released flex builder as a plugin for ec...</title><content type='html'>they have released flex builder as a plugin for eclipse for linux.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/7496440249228324766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/7496440249228324766'/><link rel='alternate' type='text/html' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html?showComment=1221846000000#c7496440249228324766' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html' ref='tag:blogger.com,1999:blog-12753102.post-6196495834569001166' source='http://www.blogger.com/feeds/12753102/posts/default/6196495834569001166' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-12753102.post-6093155268841858797</id><published>2008-09-19T12:35:00.000-04:00</published><updated>2008-09-19T12:35:00.000-04:00</updated><title type='text'>Ah man, thanks so much for those Emacs links! I've...</title><content type='html'>Ah man, thanks so much for those Emacs links! I've been running fcsh manually using a shell buffer.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/6093155268841858797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/6093155268841858797'/><link rel='alternate' type='text/html' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html?showComment=1221842100000#c6093155268841858797' title=''/><author><name>Mike</name><uri>http://www.blogger.com/profile/03051195493162626678</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html' ref='tag:blogger.com,1999:blog-12753102.post-6196495834569001166' source='http://www.blogger.com/feeds/12753102/posts/default/6196495834569001166' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-12753102.post-3759988268535273589</id><published>2008-09-19T09:36:00.000-04:00</published><updated>2008-09-19T09:36:00.000-04:00</updated><title type='text'>Another nice fit for this collection is the Flex c...</title><content type='html'>Another nice fit for this collection is the &lt;A HREF="http://marxsoftware.blogspot.com/2007/11/using-flex-debugger-fdb-with-flex-based.html" REL="nofollow"&gt;Flex command-line debugger&lt;/A&gt;.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/3759988268535273589'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12753102/6196495834569001166/comments/default/3759988268535273589'/><link rel='alternate' type='text/html' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html?showComment=1221831360000#c3759988268535273589' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://benjisimon.blogspot.com/2008/09/flex-unix-geeks-ideal-flash-environment.html' ref='tag:blogger.com,1999:blog-12753102.post-6196495834569001166' source='http://www.blogger.com/feeds/12753102/posts/default/6196495834569001166' type='text/html'/></entry></feed>