<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jamin Ruhren :: Art Direction &#38; Web Design &#187; Workshopped Problems</title>
	<atom:link href="http://www.byjamin.com/category/blog/workshopped-problems/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.byjamin.com</link>
	<description>Shocking ideas. Romantic flavors. Edgy approach. Innovative thinking. Organic sense of being.</description>
	<lastBuildDate>Tue, 17 Aug 2010 00:53:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Inspire your color schemes</title>
		<link>http://www.byjamin.com/inspire-your-color-schemes/</link>
		<comments>http://www.byjamin.com/inspire-your-color-schemes/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 16:18:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshopped Problems]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://byjamin.com/?p=480</guid>
		<description><![CDATA[Provides color schemes by theme, images anything. I found it very useful! www.colourlovers.com]]></description>
			<content:encoded><![CDATA[<p>Provides color schemes by theme, images anything.  I found it very useful!</p>
<p><a href="http://www.colourlovers.com/" target="blank">www.colourlovers.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.byjamin.com/inspire-your-color-schemes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter in Flash : actionscript 2.0</title>
		<link>http://www.byjamin.com/twitter-in-flash-actionscript-20/</link>
		<comments>http://www.byjamin.com/twitter-in-flash-actionscript-20/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 01:29:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshopped Problems]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://byjamin.com/blog/?p=357</guid>
		<description><![CDATA[So, on my new portfolio site I wanted to incorporate Twitter within in it.  Twitter, however changed their crossdomain.xml so you can not just load into your flash movie the rss feed.  As a work around someone wrote a PHP script that totally solved my problem.  You can see the code and how it works [...]]]></description>
			<content:encoded><![CDATA[<p>So, on my new portfolio site I wanted to incorporate <a href="http://www.twitter.com" target="_blank">Twitter</a> within in it.  <a href="http://www.twitter.com" target="_blank">Twitter</a>, however changed their crossdomain.xml so you can not just load into your flash movie the rss feed.  As a work around <a href="http://blog.slawcup.com/2007/04/full-twitter-php-library-ver-01/" target="_blank">someone wrote a PHP script</a> that totally solved my problem.  <a href="http://blog.slawcup.com/2007/04/full-twitter-php-library-ver-01/" target="_blank">You can see the code and how it works here http://blog.slawcup.com/2007/04/full-twitter-php-library-ver-01/.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.byjamin.com/twitter-in-flash-actionscript-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Streaming FLV time in minutes and seconds with ActionScript 2.0</title>
		<link>http://www.byjamin.com/display-streaming-flv-time-in-minutes-and-seconds-with-actionscript-20/</link>
		<comments>http://www.byjamin.com/display-streaming-flv-time-in-minutes-and-seconds-with-actionscript-20/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 14:36:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshopped Problems]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://byjamin.com/blog/?p=109</guid>
		<description><![CDATA[So I always get questions about streaming FLV players. For special effects like the fire on Acidbetty.com or intro movies and simple embedded flv video players. So one issue I came up with was displaying the length of the video and also the current frame of the video in regard to minutes and seconds. So [...]]]></description>
			<content:encoded><![CDATA[<p>So I always get questions about streaming FLV players.  For special effects like the fire on <a href="http://acidbetty.com" target="_blank">Acidbetty.com</a> or intro movies and simple embedded flv video players.  So one issue I came up with was displaying the length of the video and also the current frame of the video in regard to minutes and seconds.</p>
<p>So the actionscript code below is the code I used to display current time playing and the total time of video.  ie:  1:32 / 2:45.</p>
<p><span id="more-109"></span></p>
<p>// Progress Bar Function and Counter Functions<br />
progressBar.onEnterFrame = function() {<br />
this._width = bw*ns.time/ns.totalTime;</p>
<p>//TOTAL TIME<br />
myTime = (ns.totalTime);<br />
myTime = String(myTime);<br />
var Ttime:Number = Math.floor(Number(ns.totalTime));<br />
var minutes:Number = Math.floor(Ttime/60);<br />
var seconds = Math.floor(Ttime%60);<br />
var frames = Math.floor(Ttime%24);<br />
if (seconds&lt;10) {<br />
seconds = (&#8220;0&#8243;+seconds);<br />
}</p>
<p>//CURRENT PLAYING TIME<br />
myTime2 = (ns.time);<br />
myTime2 = String(myTime2);<br />
var Ttime2:Number = Math.floor(Number(ns.time));<br />
var minutes2:Number = Math.floor(Ttime2/60);<br />
var seconds2 = Math.floor(Ttime2%60);<br />
var frames2 = Math.floor(Ttime2%24);<br />
if (seconds2&lt;10) {<br />
seconds2 = (&#8220;0&#8243;+seconds2);<br />
}<br />
//Now a Dynamic Text Box with Var: counter will display right<br />
counter = minutes2+&#8221;:&#8221;+seconds2+&#8221;  /  &#8220;+minutes+&#8221;:&#8221;+seconds<br />
};</p>
]]></content:encoded>
			<wfw:commentRss>http://www.byjamin.com/display-streaming-flv-time-in-minutes-and-seconds-with-actionscript-20/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Need that missing font?  Its prolly here!</title>
		<link>http://www.byjamin.com/need-that-missing-font-its-prolly-here/</link>
		<comments>http://www.byjamin.com/need-that-missing-font-its-prolly-here/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 16:17:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshopped Problems]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://byjamin.com/blog/?p=89</guid>
		<description><![CDATA[Dafont.com has everything you will need plus thousands more!]]></description>
			<content:encoded><![CDATA[<div id="image"><a href="http://byjamin.com/blog/wp-content/uploads/2008/07/dafont2.jpg"><img class="alignnone size-medium wp-image-90" title="dafont" src="http://byjamin.com/blog/wp-content/uploads/2008/07/dafont.jpg" alt="" width="400" height="250" /></a></div>
<p><a href="http://www.dafont.com" target="_blank">Dafont.com</a> has everything you will need plus thousands more!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.byjamin.com/need-that-missing-font-its-prolly-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash to the Core :: where I learned it all</title>
		<link>http://www.byjamin.com/where-i-learned-it-all/</link>
		<comments>http://www.byjamin.com/where-i-learned-it-all/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 19:19:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Workshopped Problems]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://byjamin.com/blog/?p=80</guid>
		<description><![CDATA[I am not sure if its a good thing or a bad thing, but I got my start in Flash design right here, this book by Joshua Davis. Flash to the Core and me were best friends one COLD winter and little did I know that I would become obsessed with Actionscript and Flash and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://byjamin.com/blog/wp-content/uploads/2008/07/jd.jpg"><img class="alignnone size-thumbnail wp-image-81" title="jd" src="http://byjamin.com/blog/wp-content/uploads/2008/07/jd-400x250.jpg" alt="" width="400" height="250" /></a></p>
<p>I am not sure if its a good thing or a bad thing, but I got my start in Flash design <a href="http://www.amazon.com/exec/obidos/ASIN/0735712883/qid%3D1027783635/sr%3D8-1/praystation-20/102-5719154-9982544" target="_blank">right here, this book</a> by Joshua Davis.</p>
<p><a href="http://flashtothecore.praystation.com/" target="_blank">Flash to the Core</a> and me were best friends one COLD winter and little did I know that I would become obsessed with Actionscript and Flash and actually make my living with it.  Thanks Josh!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.byjamin.com/where-i-learned-it-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActionScript 2 &amp; 3 Flash PHP MySQL Panel Extension</title>
		<link>http://www.byjamin.com/actionscript-2-3-flash-php-mysql-panel-extension/</link>
		<comments>http://www.byjamin.com/actionscript-2-3-flash-php-mysql-panel-extension/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 22:57:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Workshopped Problems]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://byjamin.com/blog/?p=55</guid>
		<description><![CDATA[I found this great Extension for Flash that makes life SO MUCH EASIER!!! For those designers how tend to spend too much time trying to get their heads around the programming side and how your flash is going to communicate with the MySQL database. This is the answer: ActionScript 2 &#38; 3 Flash PHP MySQL [...]]]></description>
			<content:encoded><![CDATA[<div id="image"><a href="http://byjamin.com/blog/wp-content/uploads/2008/07/peak.jpg"><img class="alignnone size-medium wp-image-56" title="peak" src="http://byjamin.com/blog/wp-content/uploads/2008/07/peak-400x222.jpg" alt="" width="400" height="222" /></a></div>
<p>I found this great Extension for Flash that makes life SO MUCH EASIER!!!</p>
<p>For those designers how tend to spend too much time trying to get their heads around the programming side and how your flash is going to communicate with the MySQL database.</p>
<p><span id="more-55"></span></p>
<p>This is the answer:<br />
<a href="http://www.peakstudios.com/purchase-peak-studios/" target="_blank">ActionScript 2 &amp; 3 Flash PHP MySQL Panel Extension</a><br />
I used this extension with my high score board in <a href="http://www.byjamin.com/pigs" target="_blank">When Pigs Fly</a>.  And it worked like a charm!</p>
<p>You can try it out for free.  I recommend it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.byjamin.com/actionscript-2-3-flash-php-mysql-panel-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


<!--#include FILE="includes/header.shtml"-->





<!--#include FILE="includes/footer.shtml"-->