<?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/">
	<channel>
		<title>Digital Media Arts (DMA)</title>
		<link>http://dmaforum.forumotion.net/feed/?</link>
		<description>Latest topics</description>
		<lastBuildDate>Fri, 09 Oct 2009 02:08:35 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>Digital Media Arts (DMA)</title>
			<url>http://www.dmaclasses.com/ForumHeader.jpg</url>
			<link>http://dmaforum.forumotion.net/feed/?</link>
		</image>
		<item>
			<title>I wrote this tutorial. Flash using Papervision3d to create a cube.</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/i-wrote-this-tutorial-flash-using-papervision3d-to-create-a-cube-t56.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description><![CDATA[I created this tutorial that shows you how to create real 3 dimensional objects in Flash. I created a cube using Papervision3d. Let me know what you think. Do you want me to show you more of this stuff?
<br />
<font color="green">
<br />
<a href="http://vimeo.com/6969725" target="_blank">http://vimeo.com/6969725</a></font>]]></description>
			<category>Adobe Flash</category>
			<pubDate>Fri, 09 Oct 2009 02:08:35 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/i-wrote-this-tutorial-flash-using-papervision3d-to-create-a-cube-t56.htm#103</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/i-wrote-this-tutorial-flash-using-papervision3d-to-create-a-cube-t56.htm</guid>
		</item>
		<item>
			<title>Check out this video! 3D Games in Flash.</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/check-out-this-video-3d-games-in-flash-t55.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description><![CDATA[Check out this video of the recent past Flash on the Beach showcase. Flash has become very powerful.
<br />

<br />
<a href="http://www.vimeo.com/6768982" class="postlink" target="_blank"><a href="http://www.vimeo.com/6768982" target="_blank">http://www.vimeo.com/6768982</a></a>]]></description>
			<category>Adobe Flash</category>
			<pubDate>Thu, 01 Oct 2009 00:18:51 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/check-out-this-video-3d-games-in-flash-t55.htm#102</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/check-out-this-video-3d-games-in-flash-t55.htm</guid>
		</item>
		<item>
			<title>Intro to JQuery</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/intro-to-jquery-t54.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>



JQuery is a Javascript library that defines functions in order to facilitate working with javascript. I fixes the many browsers inconsistencies too. It has to developed into a very popular library today. It has a huge community of developers using it and supporting it.

JQuery

1.	In order to use the Library you will have to include it in your documents as so:

&lt;script type=”text/javascript” src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js&quot;&gt;&lt;/script&gt;



2.	Jquery  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Thu, 10 Sep 2009 21:15:19 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/intro-to-jquery-t54.htm#101</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/intro-to-jquery-t54.htm</guid>
		</item>
		<item>
			<title>Javascript Objects.</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-objects-t53.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>All of the programming objects group collections of properties and functions into Objects. Javascript is no different. It has its native language objects and it gives us the ability to create our own custom objects. We can create one just as any other variable and adding values within curly brackets. An object in Javascript is created like this:



Code:&lt;script type=&quot;text/javascript&quot;&gt;



var myObject = &#123;&#125;;



&lt;/script&gt;





To add Properties and Methods;  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Sat, 22 Aug 2009 17:17:26 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-objects-t53.htm#100</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-objects-t53.htm</guid>
		</item>
		<item>
			<title>Finally GRADUATED FROM TCI!</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/finally-graduated-from-tci-t52.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>I finally completed my final semester at TCI. Now I have time to create some very exciting and advanced Flash tutorials.</description>
			<category>Adobe Flash</category>
			<pubDate>Thu, 13 Aug 2009 00:00:20 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/finally-graduated-from-tci-t52.htm#98</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/finally-graduated-from-tci-t52.htm</guid>
		</item>
		<item>
			<title>Javascript Loops!</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-loops-t51.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Javascript Loops



Loops are a must know in Javascript. Loops are important because it allows us to perform repetitive tasks without having to write a lot of code.



The most well-known and most used loop is the &quot;for loop&quot;. The syntax for a &quot;for loop&quot; is:



Code:for&#40;var i = 0; i &lt; 10; i++&#41;

&#123;

 Here goes the code to be executed.

&#125;



Another loop is the &quot;while loop&quot;. The while loop will keep on running until the expression  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Thu, 23 Jul 2009 18:11:04 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-loops-t51.htm#97</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-loops-t51.htm</guid>
		</item>
		<item>
			<title>Who in this forum is really interested and loves Flash!!!!!!!</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/who-in-this-forum-is-really-interested-and-loves-flash-t33.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>I just wanted to know if anybody really has a passion for Flash. I am asking this because I love Flash and I see many students in the Flash class that just get their flash work done because the professor requires them to do so and they don't look really interested in Flash. Many people complain that Flash's Actionscript is too difficult. I have to tell you that I learned Actionscript about 3 years ago on my own and now I know all about Actionscript. It is  my passion. Plus it is big money. I  ...</description>
			<category>Adobe Flash</category>
			<pubDate>Wed, 04 Mar 2009 01:38:37 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/who-in-this-forum-is-really-interested-and-loves-flash-t33.htm#68</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/who-in-this-forum-is-really-interested-and-loves-flash-t33.htm</guid>
		</item>
		<item>
			<title>Opening an External Html page with Actionscript 3.</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/opening-an-external-html-page-with-actionscript-3-t50.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>In some situations it is required to link to an external website. If your website is created mainly in Flash then linking to an external website is like this.



1. create a button or a movieclip to act as a button.

2. Give your buttton an instance name.

3. Write the actionscript code for it. It is like this.

     Lets say your button is named &quot;myButton&quot;.

    Set up the listener for the onclick event.



Code:var url&#58;URLRequest = new URLRequest&#40;&quot;http&#58;//google.com&quot;&#41;;



myButton.addEventListener&#40;MouseEvent.CLICK,  ...</description>
			<category>Adobe Flash</category>
			<pubDate>Sat, 20 Jun 2009 18:42:13 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/opening-an-external-html-page-with-actionscript-3-t50.htm#94</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/opening-an-external-html-page-with-actionscript-3-t50.htm</guid>
		</item>
		<item>
			<title>Jabry.com ASP</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/jabrycom-asp-t49.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Jabry.com is a free web hosting company. I visited the site today and created a free account with them. They will give you a space with a subdomain name on their server for free. I'm posting this because this company offers ASP server side scripting with Microsoft Acces Databasing. This will be useful for those who are taking DMA211 or DMA212 (the ASP classes). Many of the students are asking how do they go about using ASP in real life projects. This should give you practice with creating a website  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Fri, 19 Jun 2009 04:10:48 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/jabrycom-asp-t49.htm#93</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/jabrycom-asp-t49.htm</guid>
		</item>
		<item>
			<title>Array in Javascript</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/array-in-javascript-t48.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Array



Javascript contains an Array Object. An Array is an object that can contain multiple sets of data. The multiple sets of data can be different types of data. For example: An Array can contain Strings and Numbers or booleans.



An Array is created just as any other variable is.





Code:var myArray = new Array&#40;&#41;;



An Array can also be created with the bracket alone. Like this:



Code:var myArray = &#91;&#93;;



The values can be set like this:



Code:var myArray  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Wed, 17 Jun 2009 21:03:17 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/array-in-javascript-t48.htm#92</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/array-in-javascript-t48.htm</guid>
		</item>
		<item>
			<title>19&amp;quot; Flat Panel Monitor</title>
			<link>http://dmaforum.forumotion.net/the-marketplace-f12/19-flat-panel-monitor-t47.htm</link>
			<dc:creator>olujade</dc:creator>
			<description><![CDATA[I'm selling a brand new Dell 19&quot; Flat Panel Monitor for $125.00 In the box..
<br />

<br />

<br />
You can reach me @
<br />
<a href="mailto:lamanrichards@gmail.com">lamanrichards@gmail.com</a>]]></description>
			<category>The Marketplace</category>
			<pubDate>Fri, 12 Jun 2009 17:30:20 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-marketplace-f12/19-flat-panel-monitor-t47.htm#91</comments>
			<guid>http://dmaforum.forumotion.net/the-marketplace-f12/19-flat-panel-monitor-t47.htm</guid>
		</item>
		<item>
			<title>Javascript Functions - How do they work?</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-functions-how-do-they-work-t46.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Today I just felt like writing about functions.



Functions:



Functions are a very important part of any programming language. Functions allow a programmer to create a reusable block or piece of code. Meaning that you can create a piece of code that can be used in many different places without having to write the whole code over again. I think that an example will clear things up.



To create a function we must declare it with the function keyword, followed by a custom name that you  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Wed, 10 Jun 2009 21:47:57 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-functions-how-do-they-work-t46.htm#90</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-functions-how-do-they-work-t46.htm</guid>
		</item>
		<item>
			<title>ActionScript Website</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/actionscript-website-t43.htm</link>
			<dc:creator>rchen</dc:creator>
			<description>Hi all,



I'm new to the forum, so not sure if someone has posted this site http://www.actionscript.org/index.php.



It's a pretty nice site with many tutorials for actionscript, I found it useful for the DMA202 class.



Enjoy.   </description>
			<category>Adobe Flash</category>
			<pubDate>Thu, 23 Apr 2009 03:15:13 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/actionscript-website-t43.htm#86</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/actionscript-website-t43.htm</guid>
		</item>
		<item>
			<title>Javascript basics - Variables</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-basics-variables-t45.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Variables



Javascript is a browser scripting language that adds interactivity to the static html pages. The thing is that you can't create the awsome effects and menus without first learning and understanding the basics of the language. Variables is a must know subject.



A variable in Javascript is a container of data. It can contain a String, Boolean, Number. A variable can also be of an Array data type. An Array data type is special in that it can contain many Strings, Numbers.



A  ...</description>
			<category>Coding/Scripting</category>
			<pubDate>Thu, 14 May 2009 02:48:50 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-basics-variables-t45.htm#88</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/javascript-basics-variables-t45.htm</guid>
		</item>
		<item>
			<title>Jorge Lopez</title>
			<link>http://dmaforum.forumotion.net/social-lounge-f6/jorge-lopez-t44.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>I know! It's a little late to introduce myself. Anyways here it goes. I am a graduating senior at TCI. I started being interested in design and development from a day way back when I wanted to create an animation. I searched online for Animation software and guess which one came up first on the list? FLASH did. I started using Macromedia Flash 8. I learned Actionscript 2 on my own. My friends pressured me to go to College because they knew that I had a big passion and big potential to do great  ...</description>
			<category>Social Lounge</category>
			<pubDate>Thu, 14 May 2009 01:30:42 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/social-lounge-f6/jorge-lopez-t44.htm#87</comments>
			<guid>http://dmaforum.forumotion.net/social-lounge-f6/jorge-lopez-t44.htm</guid>
		</item>
		<item>
			<title>I created this Flash site!</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/i-created-this-flash-site-t42.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description><![CDATA[Hello, 
<br />

<br />
I created this website for DMA202 final project. Check it out here: <a href="http://dmaprogram.com/student_work/DMA202_A91/Jlopez" target="_blank">http://dmaprogram.com/student_work/DMA202_A91/Jlopez</a>]]></description>
			<category>Adobe Flash</category>
			<pubDate>Mon, 20 Apr 2009 03:34:47 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/i-created-this-flash-site-t42.htm#85</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/i-created-this-flash-site-t42.htm</guid>
		</item>
		<item>
			<title>Multi sound player in flash!!</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/multi-sound-player-in-flash-t41.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>I created this project to help many students in my DMA 202 class. I see that many are struggling with an assignment Mr. Sabio gave us. I created this solution because I have seen many cries and even tears.

The assignment is to re-design an existing website called mycubanrose.com. Sabio wants us to create it so that when a new button is clicked; a different sound plays. Students are having trouble stoping the sound. They try to stop the sound and load a new one, but, for some reason both of  ...</description>
			<category>Adobe Flash</category>
			<pubDate>Fri, 10 Apr 2009 02:40:10 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/multi-sound-player-in-flash-t41.htm#84</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/multi-sound-player-in-flash-t41.htm</guid>
		</item>
		<item>
			<title>Swf Object. The best way to embed flash content!!!</title>
			<link>http://dmaforum.forumotion.net/adobe-dreamweaver-f4/swf-object-the-best-way-to-embed-flash-content-t40.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Embeding flash content in a website is just as important as making it look good. There's is something really wrong if you create something outstanding, but, no one can see it. That's were swf object comes in. It is a Javscript library or class that allows you to embed flash content with no hassle. Many of you embed flash through Dreamweaver by going to insert &gt; media &gt; Flash, though this may be the easiest method, it is not the best. If the user doesn't have flash installed, adobe's Javascript  ...</description>
			<category>Adobe Dreamweaver</category>
			<pubDate>Tue, 07 Apr 2009 23:23:57 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-dreamweaver-f4/swf-object-the-best-way-to-embed-flash-content-t40.htm#81</comments>
			<guid>http://dmaforum.forumotion.net/adobe-dreamweaver-f4/swf-object-the-best-way-to-embed-flash-content-t40.htm</guid>
		</item>
		<item>
			<title>Selling A Desktop q</title>
			<link>http://dmaforum.forumotion.net/the-marketplace-f12/selling-a-desktop-q-t39.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[<a href="http://newyork.craigslist.org/mnh/sys/1073303783.html" target="_blank">http://newyork.craigslist.org/mnh/sys/1073303783.html</a> (computers &amp; tech) 
<br />

<br />
i will hear offers  <img src="http://illiweb.com/fa/i/smiles/icon_cheers.png" alt="cheers" longdesc="42" />]]></description>
			<category>The Marketplace</category>
			<pubDate>Fri, 13 Mar 2009 17:36:08 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-marketplace-f12/selling-a-desktop-q-t39.htm#80</comments>
			<guid>http://dmaforum.forumotion.net/the-marketplace-f12/selling-a-desktop-q-t39.htm</guid>
		</item>
		<item>
			<title>new flash site</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/new-flash-site-t38.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[<a href="http://www.flashperfection.com/" target="_blank">http://www.flashperfection.com/</a>   is a great website for flash tutorials. Enjoy]]></description>
			<category>Adobe Flash</category>
			<pubDate>Wed, 11 Mar 2009 14:56:46 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/new-flash-site-t38.htm#79</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/new-flash-site-t38.htm</guid>
		</item>
		<item>
			<title>Help Us! :D</title>
			<link>http://dmaforum.forumotion.net/adobe-dreamweaver-f4/help-us-d-t2.htm</link>
			<dc:creator>formofagoose</dc:creator>
			<description><![CDATA[To all the Dreamweaver Professionals <img src="http://illiweb.com/fa/i/smiles/icon_biggrin.png" alt="Very Happy" longdesc="1" /> , please post up all the information and basics us students need to know. We need all the help that we can get. Thank you so much! P.S.: We know we can get our information from text in the Dreamweaver CS3 book but it would be easier if you would tell us. Thanks Again! -goose, mark]]></description>
			<category>Adobe Dreamweaver</category>
			<pubDate>Tue, 20 Jan 2009 13:31:26 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-dreamweaver-f4/help-us-d-t2.htm#3</comments>
			<guid>http://dmaforum.forumotion.net/adobe-dreamweaver-f4/help-us-d-t2.htm</guid>
		</item>
		<item>
			<title>i wanna know how to put something cool in a picture</title>
			<link>http://dmaforum.forumotion.net/adobe-photoshop-f1/i-wanna-know-how-to-put-something-cool-in-a-picture-t31.htm</link>
			<dc:creator>Ccoronado</dc:creator>
			<description><![CDATA[anything but look cool like this image  <img src="http://illiweb.com/fa/i/smiles/icon_smile.gif" alt="Smile" longdesc="2" />  [img]<a href="http://www.servimg.com/image_preview.php?i=1&amp;u=13621847" class="postlink" target="_blank"><img src="http://i62.servimg.com/u/f62/13/62/18/47/carlos10.jpg" border="0" alt="" /></a>[/img]]]></description>
			<category>Adobe Photoshop</category>
			<pubDate>Sat, 28 Feb 2009 00:17:52 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-photoshop-f1/i-wanna-know-how-to-put-something-cool-in-a-picture-t31.htm#64</comments>
			<guid>http://dmaforum.forumotion.net/adobe-photoshop-f1/i-wanna-know-how-to-put-something-cool-in-a-picture-t31.htm</guid>
		</item>
		<item>
			<title>Phone calls from Flash?</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/phone-calls-from-flash-t35.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Yes. That's right! There's a company called Ribbit that has a set of Actionscript libraries that allow you to call anyone from any swf file. This is great if you are making a website for a client and need to add immediate contact features for their site. You can create the code neccessary to make the calls. The person can make a call from the computer to the client. The user has to have a microphone. The user can just visit the website and on the contact page just click on call and the client  ...</description>
			<category>Adobe Flash</category>
			<pubDate>Wed, 04 Mar 2009 01:46:20 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/phone-calls-from-flash-t35.htm#70</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/phone-calls-from-flash-t35.htm</guid>
		</item>
		<item>
			<title>how i used this program</title>
			<link>http://dmaforum.forumotion.net/adobe-illustrator-f2/how-i-used-this-program-t36.htm</link>
			<dc:creator>Ccoronado</dc:creator>
			<description>i dont have any clue to use this i really need help</description>
			<category>Adobe Illustrator</category>
			<pubDate>Wed, 04 Mar 2009 02:00:09 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-illustrator-f2/how-i-used-this-program-t36.htm#71</comments>
			<guid>http://dmaforum.forumotion.net/adobe-illustrator-f2/how-i-used-this-program-t36.htm</guid>
		</item>
		<item>
			<title>HDRI The New Buzz!</title>
			<link>http://dmaforum.forumotion.net/video-multimedia-f7/hdri-the-new-buzz-t37.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>HDRI is a must know if you are interested in film. HDRI is a new

technology that allows you to use a 32 bit system in imaging instead of

the 16 bit system. Thus, allowing you to create a pixel whiter that

pure white or #ffffff. You can create an HDRI image by taking 3 photos

of the same object with different exposures. One image has to be taken

with less exposure the second one with normal exposure and the third

one with excess exposure and the use special software to combine all

three  ...</description>
			<category>Video &amp; Multimedia</category>
			<pubDate>Wed, 04 Mar 2009 02:09:43 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/video-multimedia-f7/hdri-the-new-buzz-t37.htm#72</comments>
			<guid>http://dmaforum.forumotion.net/video-multimedia-f7/hdri-the-new-buzz-t37.htm</guid>
		</item>
		<item>
			<title>Selling PSP For 180</title>
			<link>http://dmaforum.forumotion.net/the-marketplace-f12/selling-psp-for-180-t34.htm</link>
			<dc:creator>Ccoronado</dc:creator>
			<description>perfect condition only 1 month old and i am selling it because i have to pay my bank bill lol



-8GB memory

-(PSP Color)gray

-Case

-Games-Grand Thief Auto Vicy Stories and Ratched.

-Movies- National trasure 2







For More information send me a private message or a reply.



My msn Is Carlos_Coronado_31@hotmail.com(for information)

and my aim is ElCoronado1988



Thx you and have a great day    </description>
			<category>The Marketplace</category>
			<pubDate>Wed, 04 Mar 2009 01:45:10 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-marketplace-f12/selling-psp-for-180-t34.htm#69</comments>
			<guid>http://dmaforum.forumotion.net/the-marketplace-f12/selling-psp-for-180-t34.htm</guid>
		</item>
		<item>
			<title>Artbisrto for jobs and more....</title>
			<link>http://dmaforum.forumotion.net/the-job-board-f8/artbisrto-for-jobs-and-more-t32.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description>this is a cool site for alot. portfolio's jobs and much more. just thought if ya really wanted to make a name for yourself or some cash this is a good site for both. just be professional. this is a monster.com website so they do have people who hire. ejoy     artbistro.com</description>
			<category>The Job Board</category>
			<pubDate>Mon, 02 Mar 2009 20:55:44 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-job-board-f8/artbisrto-for-jobs-and-more-t32.htm#66</comments>
			<guid>http://dmaforum.forumotion.net/the-job-board-f8/artbisrto-for-jobs-and-more-t32.htm</guid>
		</item>
		<item>
			<title>I came across this great flash application!!!!</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/i-came-across-this-great-flash-application-t30.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description><![CDATA[The person or company who created this Flash web application is such a good programmer. This is an image editor very similar to photoshop created in Flash. Believe it or not it is all Flash. You open a picture and you can manipulate it. Check it out here: <font color="red"><a href="http://pixlr.com/editor/" class="postlink" target="_blank"><a href="http://pixlr.com/editor/" target="_blank">http://pixlr.com/editor/</a></a></font>]]></description>
			<category>Adobe Flash</category>
			<pubDate>Wed, 25 Feb 2009 00:03:18 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/i-came-across-this-great-flash-application-t30.htm#63</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/i-came-across-this-great-flash-application-t30.htm</guid>
		</item>
		<item>
			<title>Testing a &amp;quot;Password Required&amp;quot; Lingo Script</title>
			<link>http://dmaforum.forumotion.net/video-multimedia-f7/testing-a-password-required-lingo-script-t28.htm</link>
			<dc:creator>The Queen Admin</dc:creator>
			<description>Okay, this post is primarily for Jesus, but multimedia Lingo-ist may find this interesting. This is a copy and paste from another website forum where the question was asked....







1. Have a non editable field

2. Display * instead of the character, at the same time add the actual character to a variable

3. Delete the last character in the field and the variable if the user presses backspace key

4. Perfom necessary validations



Though this may sound very complicated, it's not  ...</description>
			<category>Video &amp; Multimedia</category>
			<pubDate>Tue, 24 Feb 2009 04:03:22 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/video-multimedia-f7/testing-a-password-required-lingo-script-t28.htm#60</comments>
			<guid>http://dmaforum.forumotion.net/video-multimedia-f7/testing-a-password-required-lingo-script-t28.htm</guid>
		</item>
		<item>
			<title>Interactive Multimedia Samples ...</title>
			<link>http://dmaforum.forumotion.net/video-multimedia-f7/interactive-multimedia-samples-t29.htm</link>
			<dc:creator>The Queen Admin</dc:creator>
			<description>Click to view Sample Director projects from DiscMakers



The service they provide (using Director):

http://www.discmakers.com/authoring/services_ecd.asp </description>
			<category>Video &amp; Multimedia</category>
			<pubDate>Tue, 24 Feb 2009 04:07:45 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/video-multimedia-f7/interactive-multimedia-samples-t29.htm#61</comments>
			<guid>http://dmaforum.forumotion.net/video-multimedia-f7/interactive-multimedia-samples-t29.htm</guid>
		</item>
		<item>
			<title>video section?</title>
			<link>http://dmaforum.forumotion.net/help-i-got-a-question-f9/video-section-t26.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[i know its asking alot but is it possible to put up a video section so i can upload a few video tutorials i have done myself..let me know. thank you <img src="http://illiweb.com/fa/i/smiles/icon_cheers.png" alt="cheers" longdesc="42" />]]></description>
			<category>Help! I got a question...</category>
			<pubDate>Fri, 20 Feb 2009 22:47:05 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/help-i-got-a-question-f9/video-section-t26.htm#54</comments>
			<guid>http://dmaforum.forumotion.net/help-i-got-a-question-f9/video-section-t26.htm</guid>
		</item>
		<item>
			<title>introducing myself</title>
			<link>http://dmaforum.forumotion.net/social-lounge-f6/introducing-myself-t27.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description>sorry i didn't do this earlier. i am jesus and i will be willing to help anyone who needs it. so any questions about anything Pc or mac let me know. to all have a nice day</description>
			<category>Social Lounge</category>
			<pubDate>Fri, 20 Feb 2009 22:55:27 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/social-lounge-f6/introducing-myself-t27.htm#55</comments>
			<guid>http://dmaforum.forumotion.net/social-lounge-f6/introducing-myself-t27.htm</guid>
		</item>
		<item>
			<title>nVidia GeForce 7600GS 256MB DDR2 PCI-Express/VGA DVI HDTV Output 	Graphics Card for Pc</title>
			<link>http://dmaforum.forumotion.net/the-marketplace-f12/nvidia-geforce-7600gs-256mb-ddr2-pci-express-vga-dvi-hdtv-output-graphics-card-for-pc-t25.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description>this is a good graphics card. able to run source engines with no lag....(depending in your cpu) i only am asking for 50&#36; for the card. it is a pci express card so if you dont know what is in your machine ask me. just let me know the brand. here are links to prices so you can see i went as cheap as i could.  http://www.google.com/products?hl=en&amp;q=nvidia+7600+gs&amp;um=1&amp;ie=UTF-8&amp;ei=Pi-fSfuHBteitgfPisyIDQ&amp;sa=X&amp;oi=product_result_group&amp;resnum=5&amp;ct=title   the graphics  ...</description>
			<category>The Marketplace</category>
			<pubDate>Fri, 20 Feb 2009 22:39:48 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-marketplace-f12/nvidia-geforce-7600gs-256mb-ddr2-pci-express-vga-dvi-hdtv-output-graphics-card-for-pc-t25.htm#53</comments>
			<guid>http://dmaforum.forumotion.net/the-marketplace-f12/nvidia-geforce-7600gs-256mb-ddr2-pci-express-vga-dvi-hdtv-output-graphics-card-for-pc-t25.htm</guid>
		</item>
		<item>
			<title>Problem with Flash Preloader for class? I wrote this tutorial.</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/problem-with-flash-preloader-for-class-i-wrote-this-tutorial-t24.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Hello,



I am currently taking DMA 202 (Multimedia 2) and DMA 205 (Flash interactivity) and I've noticed that a lot of people seem to be having problems with Flash movie preloaders. I wrote this short tutorial to help out those who are lost. Just realize that this is not the only way of creating a preloader. I think that this may be the simplest way of creating one.



Preloader



a. Open Flash.

b. Create a background bar.

c. Create a bar with the Rectangle tool 200 pixels wide. Turn it into  ...</description>
			<category>Adobe Flash</category>
			<pubDate>Wed, 18 Feb 2009 22:58:04 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/problem-with-flash-preloader-for-class-i-wrote-this-tutorial-t24.htm#50</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/problem-with-flash-preloader-for-class-i-wrote-this-tutorial-t24.htm</guid>
		</item>
		<item>
			<title>director question.</title>
			<link>http://dmaforum.forumotion.net/coding-scripting-f5/director-question-t23.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[i wanted to know if there was a way to put passwords on certain things.. just wanted to know for the future and a project for school... <img src="http://illiweb.com/fa/i/smiles/affraid.gif" alt="affraid" longdesc="40" />]]></description>
			<category>Coding/Scripting</category>
			<pubDate>Fri, 13 Feb 2009 22:39:45 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/coding-scripting-f5/director-question-t23.htm#43</comments>
			<guid>http://dmaforum.forumotion.net/coding-scripting-f5/director-question-t23.htm</guid>
		</item>
		<item>
			<title>Great flash and photoshop tutorials</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/great-flash-and-photoshop-tutorials-t19.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[check out  <img src="http://illiweb.com/fa/i/smiles/icon_arrow.gif" alt="Arrow" longdesc="19" />   <a href="http://www.spoono.com" target="_blank">www.spoono.com</a> for flash and photoshop tutorials. they also have fireworks tutorials of wanted..]]></description>
			<category>Adobe Flash</category>
			<pubDate>Mon, 09 Feb 2009 21:34:03 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/great-flash-and-photoshop-tutorials-t19.htm#38</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/great-flash-and-photoshop-tutorials-t19.htm</guid>
		</item>
		<item>
			<title>if your falling behind....</title>
			<link>http://dmaforum.forumotion.net/my-dma-class-is-kickin-my-f10/if-your-falling-behind-t22.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[and need some tutorials to show or simply to find out the smallest question and answer i have a site for you. this site is all adobe and more i thought i mite share this great site. one of my personal favs.  <a href="http://library.creativecow.net/" target="_blank">http://library.creativecow.net/</a>  ....  enjoy <img src="http://illiweb.com/fa/i/smiles/lol.gif" alt="lol!" longdesc="61" />  <img src="http://illiweb.com/fa/i/smiles/icon_cheers.png" alt="cheers" longdesc="42" />]]></description>
			<category>My DMA Class is kickin' my &gt;&gt;</category>
			<pubDate>Fri, 13 Feb 2009 22:37:29 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/my-dma-class-is-kickin-my-f10/if-your-falling-behind-t22.htm#42</comments>
			<guid>http://dmaforum.forumotion.net/my-dma-class-is-kickin-my-f10/if-your-falling-behind-t22.htm</guid>
		</item>
		<item>
			<title>X-Box 360 Accessories For Sale</title>
			<link>http://dmaforum.forumotion.net/the-marketplace-f12/x-box-360-accessories-for-sale-t21.htm</link>
			<dc:creator>GabeDomin</dc:creator>
			<description>- X-Box Live Camera $30+(its worth it if you enjoy online play)</description>
			<category>The Marketplace</category>
			<pubDate>Wed, 11 Feb 2009 18:02:41 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-marketplace-f12/x-box-360-accessories-for-sale-t21.htm#40</comments>
			<guid>http://dmaforum.forumotion.net/the-marketplace-f12/x-box-360-accessories-for-sale-t21.htm</guid>
		</item>
		<item>
			<title>more flash websites</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/more-flash-websites-t20.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[check out <a href="http://www.flashden.net" target="_blank">www.flashden.net</a> and <a href="http://www.flashfridge.com" target="_blank">http://www.flashfridge.com</a> for some ideas tutorials and others. Flashden is a website to expand your ideas with flash. think outside the stage...]]></description>
			<category>Adobe Flash</category>
			<pubDate>Wed, 11 Feb 2009 18:02:24 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/more-flash-websites-t20.htm#39</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/more-flash-websites-t20.htm</guid>
		</item>
		<item>
			<title>If any need help</title>
			<link>http://dmaforum.forumotion.net/adobe-illustrator-f2/if-any-need-help-t3.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[If anyone needs help with illustrator i can try my best to help you. Do not hesitate to ask a question. no question is a stupid question. All have a good day. <img src="http://illiweb.com/fa/i/smiles/fresse.png" alt="What a Face" longdesc="21" />]]></description>
			<category>Adobe Illustrator</category>
			<pubDate>Wed, 21 Jan 2009 14:53:36 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-illustrator-f2/if-any-need-help-t3.htm#5</comments>
			<guid>http://dmaforum.forumotion.net/adobe-illustrator-f2/if-any-need-help-t3.htm</guid>
		</item>
		<item>
			<title>Portable Hard drive needed</title>
			<link>http://dmaforum.forumotion.net/the-marketplace-f12/portable-hard-drive-needed-t18.htm</link>
			<dc:creator>johnny_quid06</dc:creator>
			<description>I'm in the market for a portable hard drive 250gb+... so if anyone wants to make some money off of their old hd to get a newer one, hit me up. also, i'm cheap... so think of that before you throw out numbers</description>
			<category>The Marketplace</category>
			<pubDate>Sat, 07 Feb 2009 13:47:29 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-marketplace-f12/portable-hard-drive-needed-t18.htm#35</comments>
			<guid>http://dmaforum.forumotion.net/the-marketplace-f12/portable-hard-drive-needed-t18.htm</guid>
		</item>
		<item>
			<title>Great Tutorials on Logos and Icons.</title>
			<link>http://dmaforum.forumotion.net/adobe-illustrator-f2/great-tutorials-on-logos-and-icons-t16.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[I love illustrator and i will be posting up a bunch of great tutorial sites for it. Here is a good site
<br />

<br />
<a href="http://www.good-tutorials.com/tutorials/illustrator/logos-and-icons" target="_blank">http://www.good-tutorials.com/tutorials/illustrator/logos-and-icons</a>
<br />

<br />
Enjoy <img src="http://illiweb.com/fa/i/smiles/icon_study.png" alt="study" longdesc="57" />]]></description>
			<category>Adobe Illustrator</category>
			<pubDate>Fri, 30 Jan 2009 03:47:45 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-illustrator-f2/great-tutorials-on-logos-and-icons-t16.htm#27</comments>
			<guid>http://dmaforum.forumotion.net/adobe-illustrator-f2/great-tutorials-on-logos-and-icons-t16.htm</guid>
		</item>
		<item>
			<title>Lets get involved</title>
			<link>http://dmaforum.forumotion.net/social-lounge-f6/lets-get-involved-t6.htm</link>
			<dc:creator>olujade</dc:creator>
			<description><![CDATA[Hey Laman here, This is an awesome tool for TCI students and I intend to utilize it to it's fullest. So lets get involved.
<br />

<br />
Laman (olujade) <img src="http://illiweb.com/fa/i/smiles/icon_cool.gif" alt="Cool" longdesc="6" />]]></description>
			<category>Social Lounge</category>
			<pubDate>Thu, 22 Jan 2009 00:43:35 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/social-lounge-f6/lets-get-involved-t6.htm#8</comments>
			<guid>http://dmaforum.forumotion.net/social-lounge-f6/lets-get-involved-t6.htm</guid>
		</item>
		<item>
			<title>Blackberry 8830 World Edition for sale</title>
			<link>http://dmaforum.forumotion.net/the-marketplace-f12/blackberry-8830-world-edition-for-sale-t17.htm</link>
			<dc:creator>The Queen Admin</dc:creator>
			<description>NEW Blackberry 8830WE





I got this brand new from Verizon in October 08. Since then I switched to t-Mobile. The phone works perfectly and is in excellent condition --practically new. Verizon is asking &#36;99 with a 2-year contract for this phone. I am selling mine for &#36;75 - no contract/unlocked.



Send me a PM (Private Message) or hit &quot;reply&quot;  if you are interested. 













 

The Queen Admin </description>
			<category>The Marketplace</category>
			<pubDate>Tue, 03 Feb 2009 23:13:19 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-marketplace-f12/blackberry-8830-world-edition-for-sale-t17.htm#32</comments>
			<guid>http://dmaforum.forumotion.net/the-marketplace-f12/blackberry-8830-world-edition-for-sale-t17.htm</guid>
		</item>
		<item>
			<title>Craigslist - Freelance Listings (NYC)</title>
			<link>http://dmaforum.forumotion.net/the-job-board-f8/craigslist-freelance-listings-nyc-t9.htm</link>
			<dc:creator>The Queen Admin</dc:creator>
			<description><![CDATA[<span style="font-size: 12px; line-height: normal">Craigslist:</span>
<br />
<a href="http://newyork.craigslist.org/med/" class="postlink" target="_blank"><a href="http://newyork.craigslist.org/med/" target="_blank">http://newyork.craigslist.org/med/</a></a>]]></description>
			<category>The Job Board</category>
			<pubDate>Tue, 27 Jan 2009 00:14:01 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-job-board-f8/craigslist-freelance-listings-nyc-t9.htm#18</comments>
			<guid>http://dmaforum.forumotion.net/the-job-board-f8/craigslist-freelance-listings-nyc-t9.htm</guid>
		</item>
		<item>
			<title>The Gallery's</title>
			<link>http://dmaforum.forumotion.net/help-i-got-a-question-f9/the-gallery-s-t8.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[i tried to upload a few images to a gallery and it said it was uploaded but  when i check it is not there. i have tried resizing and flattening the images but that hasn't work either. what am i doing wrong? Thanks <img src="http://illiweb.com/fa/i/smiles/lol.gif" alt="lol!" longdesc="61" />]]></description>
			<category>Help! I got a question...</category>
			<pubDate>Fri, 23 Jan 2009 13:52:17 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/help-i-got-a-question-f9/the-gallery-s-t8.htm#12</comments>
			<guid>http://dmaforum.forumotion.net/help-i-got-a-question-f9/the-gallery-s-t8.htm</guid>
		</item>
		<item>
			<title>Check out this amazing website and Get some inspiration.</title>
			<link>http://dmaforum.forumotion.net/adobe-flash-f3/check-out-this-amazing-website-and-get-some-inspiration-t15.htm</link>
			<dc:creator>jorgelopez</dc:creator>
			<description>Hello. I'm a huge fan of Big Spaceship Company. They develop and design the most amazing and unique flash websites. This company is located in Brooklyn. Well, they just launched a new website called Pretty Loaded. It shows only the best flash preloaders that have been created. It's entertaining and inspirational. Check it out and Judge for your self Here:   http://www.prettyloaded.com/ </description>
			<category>Adobe Flash</category>
			<pubDate>Thu, 29 Jan 2009 04:01:02 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/adobe-flash-f3/check-out-this-amazing-website-and-get-some-inspiration-t15.htm#25</comments>
			<guid>http://dmaforum.forumotion.net/adobe-flash-f3/check-out-this-amazing-website-and-get-some-inspiration-t15.htm</guid>
		</item>
		<item>
			<title>bad upload!!</title>
			<link>http://dmaforum.forumotion.net/help-i-got-a-question-f9/bad-upload-t14.htm</link>
			<dc:creator>JesusR</dc:creator>
			<description><![CDATA[i uploaded a pic that wasnt the right format and its aint showing can u delete it please <img src="http://illiweb.com/fa/i/smiles/icon_smile.gif" alt="Smile" longdesc="2" /> in the student showcase.. thank you.. <img src="http://illiweb.com/fa/i/smiles/lol.gif" alt="lol!" longdesc="61" />]]></description>
			<category>Help! I got a question...</category>
			<pubDate>Wed, 28 Jan 2009 00:33:50 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/help-i-got-a-question-f9/bad-upload-t14.htm#24</comments>
			<guid>http://dmaforum.forumotion.net/help-i-got-a-question-f9/bad-upload-t14.htm</guid>
		</item>
		<item>
			<title>Graphics Intern - CNN</title>
			<link>http://dmaforum.forumotion.net/the-job-board-f8/graphics-intern-cnn-t13.htm</link>
			<dc:creator>The Queen Admin</dc:creator>
			<description>



Spring 2009 Intern - CNN, Graphics (New York)

TimeWarner/ Turner Broadcasting

Industry:	Advertising

Location:	NY, New York

Requisition #:	108134BR

Position Type:	Intern





Posting Job Description	

Please Note: Internships are UNPAID, require academic credit and structured to last approximately 12 weeks. Course Credit is available. Resume, Cover Letter and a College Reference is required. Students should have a strong academic record (3.0 strongly preferred) and good character.  ...</description>
			<category>The Job Board</category>
			<pubDate>Tue, 27 Jan 2009 00:36:19 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-job-board-f8/graphics-intern-cnn-t13.htm#22</comments>
			<guid>http://dmaforum.forumotion.net/the-job-board-f8/graphics-intern-cnn-t13.htm</guid>
		</item>
		<item>
			<title>Graphic Design Internship</title>
			<link>http://dmaforum.forumotion.net/the-job-board-f8/graphic-design-internship-t12.htm</link>
			<dc:creator>The Queen Admin</dc:creator>
			<description>Graphic design Internship

posted: January 10, 2009, 10:01 AM



Reply: Click here to reply

This is a PART TIME Unpaid Internship



Cipheraudio Recording is a music based content management and marketing firm. We are a Production company that has worked with some high profile clients.

We are looking for someone that is able to help create and design all of our web based content such as, myspaces, blogs, web pages, graphics, flyers, etc. This internship offers a great opportunity to  ...</description>
			<category>The Job Board</category>
			<pubDate>Tue, 27 Jan 2009 00:29:21 GMT</pubDate>
			<comments>http://dmaforum.forumotion.net/the-job-board-f8/graphic-design-internship-t12.htm#21</comments>
			<guid>http://dmaforum.forumotion.net/the-job-board-f8/graphic-design-internship-t12.htm</guid>
		</item>
	</channel>
</rss>