<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xml:lang="en">
  <id>http://nvmind.com/blog/feed/atom/</id>
  <updated>2011-09-29T10:12:46Z</updated>
  <title type="text">Nvmind.   |   Interfaces in PHP, MySQL, XHTML/CSS, ActionScript and other technologies</title>
  <subtitle type="text">Interfaces for the web coded in PHP, MySQL, CSS, Ajax, Javascript, ActionScript and other technologies</subtitle>
  
  <link rel="alternate" href="http://nvmind.com/blog" />
  <rights type="text">Copyright 2011</rights>
  <generator uri="http://wordpress.org/" version="3.0.4">WordPress</generator>
      <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/Nvmind" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="nvmind" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry>
    <id>http://nvmind.com/blog/?p=260</id>
    <title type="html"><![CDATA[Become a Javascript Console Power-User]]></title>
    <updated>2011-09-29T10:12:46Z</updated>
    <published>2011-09-29T10:12:46Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/become-a-javascript-console-power-user/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/become-a-javascript-console-power-user/" />
    <category scheme="http://nvmind.com/blog" term="Javascript" />
    <category scheme="http://nvmind.com/blog" term="Productivity" />
    <category scheme="http://nvmind.com/blog" term="Web development" />
    <summary type="html" />
      <content type="html" xml:base="http://nvmind.com/blog/become-a-javascript-console-power-user/"><![CDATA[<p><iframe width="480" height="360" src="http://www.youtube.com/embed/4mf_yNLlgic?rel=0" frameborder="0" allowfullscreen></iframe></p>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=253</id>
    <title type="html"><![CDATA[Base list of libraries I use to develop web apps]]></title>
    <updated>2011-09-13T22:56:15Z</updated>
    <published>2011-09-13T22:56:15Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/base-list-of-libraries-i-use-to-develop-web-apps/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/base-list-of-libraries-i-use-to-develop-web-apps/" />
    <category scheme="http://nvmind.com/blog" term="CSS" />
    <category scheme="http://nvmind.com/blog" term="HTML5" />
    <category scheme="http://nvmind.com/blog" term="Productivity" />
    <category scheme="http://nvmind.com/blog" term="Web development" />
    <summary type="html"><![CDATA[I want to share my personal set of tools that I use whenever I start a project from scratch. And the general idea here is to save time so let’s start by choosing a framework to speed up the workflow. &#160; To start things up I’ve been using the G5, this is a framework based on HTML5/CSS3 [...]]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/base-list-of-libraries-i-use-to-develop-web-apps/"><![CDATA[<p>I want to share my personal set of tools that I use whenever I start a project from scratch. And the general idea here is to save time so let’s start by choosing a framework to speed up the workflow.</p>
<p>&nbsp;</p>
<p>To start things up I’ve been using the <a href="http://framework.gregbabula.info/">G5</a>, this is a framework based on HTML5/CSS3 and  It has a bunch of useful must haves like CSS3PIE, Modernizr, a grid system, tool tips, image slider, lightbox modal box type, and other set of css defined classes to style text and forms elements.</p>
<p>&nbsp;</p>
<p>From here I would start defning my layout with CSS and the grid system. If you’re not a grid user, please give it a shoot. Moving things around your site will become much much easier, I promise.<br />
Also, from that list I really must recommend using <a href="http://www.modernizr.com/%20">Modernizr</a> to detect when a browser supports a feature or not. Say you want to check if the browser supports rounded corners, you can drop in conditionals, and if the browser doesn’t support it, it will fallback to alternative solutions that you can define for older browsers.
<p>&nbsp;</p>
<pre>if (!Modernizr.borderradius) { /* If it doesn't support the rounded corner */
	$.getScript("jquery.corner.js", function () {
		$("#some-div").corner();
	});
}</pre>
<p>&nbsp;</p>
<p>Cool article to get started: <a href="http://www.alistapart.com/articles/taking-advantage-of-html5-and-css3-with-modernizr/"></a><a href="http://www.alistapart.com/articles/taking-advantage-of-html5-and-css3-with-modernizr/">http://www.alistapart.com/articles/taking-advantage-of-html5-and-css3-with-modernizr/</a>
<p>&nbsp;</p>
<p>To continue my app I define the application dynamic structure and flow using Backbone.js. This great library uses the MVC convention that will let you separate you application’s interface from the functionality. The maintenance of your code will become clean and easier to read. And you know how a javascript application can become bulky and messy after a few pages.</p>
<p>&nbsp;</p>
<p><a href="http://backbone.js/" target="_blank"></a><a href="http://backbone.js/"></p>
<p>http://backbone.js/</p>
<p></a></p>
<p>&nbsp;</p>
<p>For the CSS I don’t think I have found anything better than LESS.  It enhances CSS with dynamic behavior such as variables, operations and functions.</p>
<p>&nbsp;</p>
<p><a href="http://lesscss.org/"></a><a href="http://lesscss.org/">http://lesscss.org/</a></p>
<p>&nbsp;</p>
<p>And for the back-end I use <a href="http://codeigniter.com/">CodeIgniter</a></p>
<p>&nbsp;</p>
<p>Extras:</p>
<p>&nbsp;</p>
<p>I also use a Javascript library called Kapi that let’s you define keyframed events to create anmations ala flash. Very cool.</p>
<p>&nbsp;</p>
<p><a href="https://github.com/jeremyckahn/kapi"></a><a href="https://github.com/jeremyckahn/kapi">https://github.com/jeremyckahn/kapi<br />
</a></p>
<p>&nbsp;</p>
<p>And another fun library called <a href="http://fgnass.github.com/spin.js/">spin.js</a>. It’ll let you decorate and configure how your loader spin wheel looks based on a bunch of parameters offered on the site. Very handy.</p>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=232</id>
    <title type="html"><![CDATA[A collection of HTML5 tutorials]]></title>
    <updated>2011-05-04T06:06:04Z</updated>
    <published>2011-05-04T06:04:23Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/a-collection-of-html5-tutorial-resources/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/a-collection-of-html5-tutorial-resources/" />
    <category scheme="http://nvmind.com/blog" term="HTML5" />
    <summary type="html"><![CDATA[10 HTML5 Tutorial Sites Dive Into HTML5 (diveintohtml5.org) HTML 5 Demos and Examples (html5demos.com) 5 Steps to HTML5 (5stepstohtml5.com) HTML 5 Tutorial (html5tutorial.net) HTML5 Doctor (html5doctor.com) HTML5 — Edition for Web Developers (WHATWG) HTML5: The Markup Language Reference (Michael™ Smith’s) HTML Living Standard (WHATWG: Apple Computer, Inc., Mozilla Foundation, and Opera Software ASA) Beginner HTML5: [...]]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/a-collection-of-html5-tutorial-resources/"><![CDATA[<p><img class="aligncenter size-full wp-image-233" title="html5_logo" src="http://nvmind.com/blog/wp-content/uploads/2011/05/html5_logo.png" alt="" width="580" height="350" /></p>
<h2>10 HTML5 Tutorial Sites<br />
<span id="more-232"></span></h2>
<ol>
<li><a href="http://diveintohtml5.org/">Dive Into HTML5</a> (diveintohtml5.org)</li>
<li><a href="http://html5demos.com/">HTML 5 Demos and Examples</a> (html5demos.com)</li>
<li><a href="http://5stepstohtml5.com/">5 Steps to HTML5</a> (5stepstohtml5.com)</li>
<li><a href="http://html5tutorial.net/">HTML 5 Tutorial</a> (html5tutorial.net)</li>
<li><a href="http://html5doctor.com/">HTML5 Doctor</a> (html5doctor.com)</li>
<li><a href="http://developers.whatwg.org/">HTML5 — Edition for Web Developers</a> (WHATWG)</li>
<li><a href="http://dev.w3.org/html5/markup/">HTML5: The Markup Language Reference</a> (Michael™ Smith’s)</li>
<li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">HTML Living Standard</a> (WHATWG: Apple Computer, Inc., Mozilla Foundation, and Opera Software ASA)<br />
<a href="http://www.dreamincode.net/forums/topic/228381-beginner-html5-semantics-part-3/"></a></li>
<li><a href="http://www.dreamincode.net/forums/topic/228381-beginner-html5-semantics-part-3/">Beginner HTML5: Semantics -Part 3</a> (&lt;/Dream.In.Code&gt; | April 19, 2011)</li>
<li><a href="http://www.39articles.net/html5-features-tips-and-techniques/">HTML5 Features, Tips, and Techniques</a> (39Articles | Apr 14, 2011)</li>
</ol>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=225</id>
    <title type="html"><![CDATA[JQuery Foundation]]></title>
    <updated>2011-03-24T04:30:29Z</updated>
    <published>2011-03-24T04:20:07Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/225/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/225/" />
    <category scheme="http://nvmind.com/blog" term="Javascript" />
    <summary type="html"><![CDATA[If you&#8217;re new to JQuery, please take the time to read this article by Mike Gleason. He takes a different approach explaining the foundations, how it works (visual approach), compares it to other frameworks, and he even goes in to what AJAX is. Not your usual JQuery tutorial, recommended. Read complete article here.]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/225/"><![CDATA[<p><img src="http://nvmind.com/blog/wp-content/uploads/2011/03/jquery.jpg" alt="" title="jquery" width="629" height="293" class="aligncenter size-full wp-image-226" /><br/><br />
If you&#8217;re new to JQuery, please take the time to read this article by <a href="http://blog.mikecouturier.com/2010/02/beginning-with-jquery-solid-foundation_22.html">Mike Gleason</a>. He takes a different approach explaining the foundations, how it works (visual approach), compares it to other frameworks, and he even goes in to what AJAX is. Not your usual JQuery tutorial, recommended.</p>
<p><a href="http://blog.mikecouturier.com/2010/02/beginning-with-jquery-solid-foundation_22.html">Read complete article here.</a></p>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=217</id>
    <title type="html"><![CDATA[How are WordPress themes structured?]]></title>
    <updated>2011-01-17T01:31:22Z</updated>
    <published>2011-01-17T01:26:01Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/the-structure-of-a-wordpress-theme/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/the-structure-of-a-wordpress-theme/" />
    <category scheme="http://nvmind.com/blog" term="WordPress" />
    <summary type="html" />
      <content type="html" xml:base="http://nvmind.com/blog/the-structure-of-a-wordpress-theme/"><![CDATA[<p><img src="http://nvmind.com/blog/wp-content/uploads/2011/01/anatomy-wordpress-yoast.png" alt="WordPress Theme Structure" title="WordPress Theme Structure" width="570" height="3045" class="size-full wp-image-218" /></p>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=211</id>
    <title type="html"><![CDATA[Breaking projects into primary elements]]></title>
    <updated>2011-01-03T10:26:32Z</updated>
    <published>2011-01-03T10:25:13Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/breaking-projects-into-primary-elements/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/breaking-projects-into-primary-elements/" />
    <category scheme="http://nvmind.com/blog" term="Productivity" />
    <summary type="html"><![CDATA[Read Complete Article Here.]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/breaking-projects-into-primary-elements/"><![CDATA[<p><a href="http://the99percent.com/tips/6679/action-method-i-breaking-projects-into-primary-elements"><img src="http://nvmind.com/blog/wp-content/uploads/2011/01/a47a16be2a971d22ff1c43aad3ed67ba.jpg" alt="" title="a47a16be2a971d22ff1c43aad3ed67ba" width="572" height="429" class="aligncenter size-full wp-image-212" /><br/>Read Complete Article Here.</a></p>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=201</id>
    <title type="html"><![CDATA[Redirect your iphone users]]></title>
    <updated>2010-12-18T11:26:15Z</updated>
    <published>2010-12-18T11:18:57Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/redirect-your-iphone-users/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/redirect-your-iphone-users/" />
    <category scheme="http://nvmind.com/blog" term="Javascript" />
    <category scheme="http://nvmind.com/blog" term="PHP" />
    <summary type="html"><![CDATA[To detect whether someone is viewing your site on an iPhone or iPod Touch, you can either use JavaScript or PHP. THE JAVASCRIPT if&#40;&#40;navigator.userAgent.match&#40;/iPhone/i&#41;&#41; &#124;&#124; &#40;navigator.userAgent.match&#40;/iPod/i&#124;>&#41;&#41;&#41; &#123; if &#40;document.cookie.indexOf&#40;&#34;iphone_redirect=false&#34;&#41; == -1&#41; window.location = &#34;http://mobile.yoursitehere.com&#34;; &#125; THE PHP &#160; if&#40;strstr&#40;$_SERVER&#91;&#39;HTTP_USER_AGENT&#39;&#93;,&#39;iPhone&#39;&#41; &#124;&#124; strstr&#40;$_SERVER&#91;&#39;HTTP_USER_AGENT&#39;&#93;,&#39;iPod&#39;&#41;&#41; &#123; header&#40;&#39;Location: http://mobile.yoursitehere.com&#39;&#41;; exit&#40;&#41;; &#125; (via. 24ways http://24ways.org/2010/life-beyond-media-queries)]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/redirect-your-iphone-users/"><![CDATA[<p>To detect whether someone is viewing your site on an iPhone or iPod Touch, you can either use JavaScript or PHP.</p>
<p><strong>THE JAVASCRIPT</strong></p>
<div class="geshi no javascript">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">if</span><span class="br0">&#40;</span><span class="br0">&#40;</span>navigator.<span class="me1">userAgent</span>.<span class="me1">match</span><span class="br0">&#40;</span><span class="re0">/iPhone/i<span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="sy0">||</span> <span class="br0">&#40;</span>navigator.<span class="me1">userAgent</span>.<span class="me1">match</span><span class="br0">&#40;</span><span class="sy0">/</span>iPod<span class="sy0">/</span>i<span class="sy0">|</span>><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#40;</span>document.<span class="me1">cookie</span>.<span class="me1">indexOf</span><span class="br0">&#40;</span><span class="st0">&quot;iphone_redirect=false&quot;</span><span class="br0">&#41;</span> == <span class="nu0">-1</span><span class="br0">&#41;</span> window.<span class="me1">location</span> = <span class="st0">&quot;http://mobile.yoursitehere.com&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
<p><strong>THE PHP</strong></p>
<div class="geshi no php">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span><span class="br0">&#40;</span><span class="kw3">strstr</span><span class="br0">&#40;</span><span class="re1">$_SERVER</span><span class="br0">&#91;</span><span class="st0">&#39;HTTP_USER_AGENT&#39;</span><span class="br0">&#93;</span><span class="sy0">,</span><span class="st0">&#39;iPhone&#39;</span><span class="br0">&#41;</span> <span class="sy0">||</span> <span class="kw3">strstr</span><span class="br0">&#40;</span><span class="re1">$_SERVER</span><span class="br0">&#91;</span><span class="st0">&#39;HTTP_USER_AGENT&#39;</span><span class="br0">&#93;</span><span class="sy0">,</span><span class="st0">&#39;iPod&#39;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">header</span><span class="br0">&#40;</span><span class="st0">&#39;Location: http://mobile.yoursitehere.com&#39;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">exit</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
<p>(via. 24ways http://24ways.org/2010/life-beyond-media-queries)</p>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=152</id>
    <title type="html"><![CDATA[WordPress and Flash integration]]></title>
    <updated>2010-11-21T11:19:30Z</updated>
    <published>2010-11-21T10:56:10Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/wordpress-and-flash-integration/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/wordpress-and-flash-integration/" />
    <category scheme="http://nvmind.com/blog" term="Flash" />
    <category scheme="http://nvmind.com/blog" term="PHP" />
    <category scheme="http://nvmind.com/blog" term="WordPress" />
    <summary type="html"><![CDATA[This short tutorial will get you started on how to exchange information between WordPress and Flash. img {padding: 10px 0px 10px 0px;} We&#8217;re gonna be using the AMFPHP gateway to retrieve the latest posts from a WordPress blog. This library which will help you exchange information between PHP and Flash by letting you directly call [...]]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/wordpress-and-flash-integration/"><![CDATA[<p>This short tutorial will get you started on how to exchange information between WordPress and Flash.<br />
<span id="more-152"></span></p>
<style>img {padding: 10px 0px 10px 0px;}</style>
<table border="0" cellspacing="0" cellpadding="0" width="298">
<tbody>
<tr>
<td valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>We&#8217;re gonna be using the AMFPHP gateway to retrieve the latest posts from a WordPress blog. This library which will help you exchange information between PHP and Flash by letting you directly call methods straight from your Actionscript code.</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>1. Setup the library</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td>
<ul>
<li>Download the package from <a href="http://amfphp.sourceforge.net/" target="_blank">amfphp.org</a></li>
<li>Upload the whole folder to the root of your webserver<a href="http://swfpress.com/assets/installation.png"><img src="http://swfpress.com/assets/installation.png" alt="" width="450" /><br />
</a><a href="http://swfpress.com/assets/installation.png"> </a><a href="http://swfpress.com/assets/installation.png"></a></li>
<li>Make sure your service is working by going to &#8216;http://yourserver.com/amfphp/browser/&#8217;. If you can see this screen, that means you are ready.<a href="http://swfpress.com/assets/test_amfphp.png"><img src="http://swfpress.com/assets/test_amfphp.png" alt="" width="450" /></a><a href="http://swfpress.com/assets/test_amfphp.png"> </a><a href="http://swfpress.com/assets/test_amfphp.png"></a></li>
</ul>
</td>
</tr>
<tr>
<td>2. Create a service (php class)</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td>
<ul>
<li>Create the PHP Class and define your methods that will be called from flash, for this example will create a class called Example.php that will define the method getRecentPosts that will accept the number of posts as a parameter to retrieve the latest posts.<br />
<em>Notice that we are executing a mysql query to access the WordPress table &#8216;wp_posts&#8217;</p>
<p></em><em> </em></p>
<p><a href="http://swfpress.com/assets/class_service.png" target="_blank"><img src="http://swfpress.com/assets/class_service.png" alt="" width="450" /> </a><a href="http://swfpress.com/assets/class_service.png" target="_blank"></a></li>
<li>Upload your created Class into the folder &#8216;/services&#8217; of your amfphp installation.<a href="http://swfpress.com/assets/folder.png" target="_blank"><br />
<img src="http://swfpress.com/assets/folder.png" alt="" width="450" /></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a></p>
<p><a href="http://swfpress.com/assets/folder.png" target="_blank"> </a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a></p>
<p><a href="http://swfpress.com/assets/folder.png" target="_blank"> </a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a><a href="http://swfpress.com/assets/folder.png" target="_blank"> </a><a href="http://swfpress.com/assets/folder.png" target="_blank"></a></li>
<li>Test your service by going to &#8216;http://yourserver.com/amfphp/browser/&#8217;. This panel will help you execute your method in the class to check if it&#8217;s working properly before doing any flash calls.Notice that you can actually execute your method from this screen. Type in the parameter and call it, it will display a list of results as long as you have posts on your WordPress blog.<a href="http://swfpress.com/assets/run_class.png" target="_blank"></a>
<p><a href="http://swfpress.com/assets/run_class.png" target="_blank"><img src="http://swfpress.com/assets/run_class.png" alt="" width="450" /></a></p>
<p><a href="http://swfpress.com/assets/run_class.png" target="_blank"> </a><a href="http://swfpress.com/assets/run_class.png" target="_blank"></a><a href="http://swfpress.com/assets/run_class.png" target="_blank"></a></li>
</ul>
</td>
</tr>
<tr>
<td>3. Create the flash file</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td>
<ul>
<li>Finally all we need to do is call the php method using Actionscript. Please refer to the comments on the screenshot bellow to conclude this tutorial.<br />
<a href="http://swfpress.com/assets/actionscript_amfphp.png" target="_blank"><br />
<img src="http://swfpress.com/assets/actionscript_amfphp.png" alt="" width="450" /></a></li>
</ul>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=147</id>
    <title type="html"><![CDATA[So you want to start a web startup]]></title>
    <updated>2010-11-05T19:55:29Z</updated>
    <published>2010-11-05T19:48:44Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/so-you-want-to-start-a-web-startup/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/so-you-want-to-start-a-web-startup/" />
    <category scheme="http://nvmind.com/blog" term="Business" />
    <category scheme="http://nvmind.com/blog" term="Inspirational" />
    <summary type="html"><![CDATA[Another one bites the dust.]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/so-you-want-to-start-a-web-startup/"><![CDATA[<p>Another one bites the dust. <br/><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/u6gZ4vk_Tw4?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/u6gZ4vk_Tw4?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content>
        </entry>
    <entry>
    <id>http://nvmind.com/blog/?p=139</id>
    <title type="html"><![CDATA[This is your life, do what you love and do it often&#8230;]]></title>
    <updated>2010-10-25T06:22:14Z</updated>
    <published>2010-10-25T06:20:18Z</published>
    <author>
      <name>admin</name>
      <email>nashio@gmail.com</email>
    </author>
    <link rel="replies" type="application/atom+xml" href="http://nvmind.com/blog/this-is-your-life/feed/" thr:count="0" />
    <link rel="alternate" href="http://nvmind.com/blog/this-is-your-life/" />
    <category scheme="http://nvmind.com/blog" term="Inspirational" />
    <summary type="html"><![CDATA[Great statement from Holstee Link here]]></summary>
      <content type="html" xml:base="http://nvmind.com/blog/this-is-your-life/"><![CDATA[<p>Great statement from Holstee<br />
<a href="http://nvmind.com/blog/wp-content/uploads/2010/10/The-Holstee-Manifesto.jpg"><img src="http://nvmind.com/blog/wp-content/uploads/2010/10/The-Holstee-Manifesto-224x300.jpg" alt="The Holstee Manifesto" title="The-Holstee-Manifesto" width="224" height="300" class="aligncenter size-medium wp-image-140" /></a><br />
<a href="http://shop.holstee.com/pages/about">Link here</a><br />
<br/><br/></p>
]]></content>
        </entry>
  </feed>

