<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>inane ramblings of a geek &#187; programming</title>
	<link>http://dotbmp.com/jaguar</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sun, 10 Feb 2008 14:50:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>a bite isn&#8217;t what it used to be</title>
		<link>http://dotbmp.com/jaguar/?p=10</link>
		<comments>http://dotbmp.com/jaguar/?p=10#comments</comments>
		<pubDate>Wed, 06 Feb 2008 02:17:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://dotbmp.com/jaguar/?p=10</guid>
		<description><![CDATA[So recently I&#8217;ve been learning this new programming language, FLEX, and have been very impressed with how powerful it is.  That is to say, how much power it takes to run the goddamn thing.  The benefits of having this rich environment are completely subsidized by todays computer climate.  My app which is [...]]]></description>
			<content:encoded><![CDATA[<p>So recently I&#8217;ve been learning this new programming language, FLEX, and have been very impressed with how powerful it is.  That is to say, how much power it takes to run the goddamn thing.  The benefits of having this rich environment are completely subsidized by todays computer climate.  My app which is only one page is a staggering .25 mb, and while you are correct in asserting that this is .000125 of todays average computer memory, it&#8217;s also correct to say that it is 250,000 bites.</p>
<p>When once there was a need for programmers to save every bit of memory, now concern for cpu performane is pushed aside for todays new bottleneck.  Bandwidth.  Even that isn&#8217;t much of a hindrance with today&#8217;s willy-nilly use of broadband with all this &#8217;streaming&#8217;.</p>
<p>I guess the point of this is, &#8216;media&#8217;, in all of it&#8217;s thousands of meanings, is changing so rapidly right now that no one can keep up.  I&#8217;m excited to see what awaits us, and also terrified to watch people blunder about without a clue trying to make money off of out-dated technology.</p>
<p>If you&#8217;re still reading, buy nintendo stocks!</p>
]]></content:encoded>
			<wfw:commentRss>http://dotbmp.com/jaguar/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>another update</title>
		<link>http://dotbmp.com/jaguar/?p=9</link>
		<comments>http://dotbmp.com/jaguar/?p=9#comments</comments>
		<pubDate>Mon, 04 Feb 2008 20:22:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://dotbmp.com/jaguar/?p=9</guid>
		<description><![CDATA[just a quick update, trying to keep a schedule of some sorts (ie. put something up once a day sporatically)
i&#8217;ve been trying to get a drag and drop menu to work but the problem is I can hard-code it no problem, but that is very, very cumbersome and since flex doesn&#8217;t support CSS, only SS [...]]]></description>
			<content:encoded><![CDATA[<p>just a quick update, trying to keep a schedule of some sorts (ie. put something up once a day sporatically)</p>
<p>i&#8217;ve been trying to get a drag and drop menu to work but the problem is I can hard-code it no problem, but that is very, very cumbersome and since flex doesn&#8217;t support CSS, only SS (properties of the parent don&#8217;t cascade down to the children yet) to change it is just as clumsy.</p>
<p>currently everything is working but I haven&#8217;t tried to add the dragEvent properties to an object dynamically created at runtime and added via actionscript&#8230; if I can figure out how to do that, the elegant solution has arisen easily&#8230; if not, i have a lot of research//haxing to do</p>
<p>if you&#8217;re still reading, wish me luck! if not, then go suck a lemon</p>
]]></content:encoded>
			<wfw:commentRss>http://dotbmp.com/jaguar/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
		<item>
		<title>deep linking in flex</title>
		<link>http://dotbmp.com/jaguar/?p=4</link>
		<comments>http://dotbmp.com/jaguar/?p=4#comments</comments>
		<pubDate>Wed, 30 Jan 2008 23:23:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[]]></category>

		<category><![CDATA[deep-linking]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://dotbmp.com/jaguar/?p=4</guid>
		<description><![CDATA[So I was looking into deep-linking, which is the practice of getting flash files to use the browser back button so that users feel comfortable navigating the app.  Most of the time, hitting the back button will just go back to the last &#8216;page&#8217; viewed and then when the &#8216;forward&#8217; button is hit your dumped [...]]]></description>
			<content:encoded><![CDATA[<p>So I was looking into deep-linking, which is the practice of getting flash files to use the browser back button so that users feel comfortable navigating the app.  Most of the time, hitting the back button will just go back to the last &#8216;page&#8217; viewed and then when the &#8216;forward&#8217; button is hit your dumped back at the beginning of whatever it is the flash was directing you to do.</p>
<p>Well, with deep linking, the url actually changes while the app. just keeps going (using fake #anchors).  Now this means that for every single goddamn &#8217;state&#8217; you now have to program in a parser to take in the url and use that as the control for what state is being displayed, but looking at it now that really doesn&#8217;t seem like a bad idea.  You can just throw a user halfway through a process, or deny them access to parts, but what I thought was really interesting was the ability to &#8216;re-use&#8217; code&#8230;</p>
<p>Instead of including a file in multiple spots, just send the user to the same goddamn state!  then use the URL to decide where the page will lead to next.  This I assume will come in handy at some point&#8230; I hope&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dotbmp.com/jaguar/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
	</channel>
</rss>
