<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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>Creativity Rules</title>
	<link>http://www.vaishalimistry.com</link>
	<description>Vaishali's blog about creativity, RIA, Flash, Flex and everything else</description>
	<pubDate>Tue, 28 Oct 2008 01:57:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>FLVPlayback: Handling &#8220;Error opening URL&#8221;, Connection errors</title>
		<link>http://www.vaishalimistry.com/2008/10/16/flvplayback-handling-error-opening-url-connection-errors/</link>
		<comments>http://www.vaishalimistry.com/2008/10/16/flvplayback-handling-error-opening-url-connection-errors/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 03:26:47 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2008/10/16/flvplayback-handling-error-opening-url-connection-errors/</guid>
		<description><![CDATA[I always had a problem catching file not found errors with Flash. Mainly the FLVPlayback player trying to load a file that do not exists.
Here&#8217;s how you can handle it for FLVPlayback for AS2:
import mx.video.FLVPlayback;
myFLVPlayer.addEventListener("stateChange",this);
myFLVPlayer.load("youvideofile.flv");
function stateChange() :Void {
   if(myFLVPlayer.state == FLVPlayback.CONNECTION_ERROR)
	//show error message
}
]]></description>
			<content:encoded><![CDATA[<p>I always had a problem catching file not found errors with Flash. Mainly the FLVPlayback player trying to load a file that do not exists.</p>
<p>Here&#8217;s how you can handle it for FLVPlayback for AS2:</p>
<p><code>import mx.video.FLVPlayback;<br />
myFLVPlayer.addEventListener("stateChange",this);<br />
myFLVPlayer.load("youvideofile.flv");</p>
<p>function stateChange() :Void {<br />
   if(myFLVPlayer.state == FLVPlayback.CONNECTION_ERROR)<br />
	//show error message<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2008/10/16/flvplayback-handling-error-opening-url-connection-errors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FLVPlayback FLV Preloader</title>
		<link>http://www.vaishalimistry.com/2007/10/16/flvplayback-flv-preloader/</link>
		<comments>http://www.vaishalimistry.com/2007/10/16/flvplayback-flv-preloader/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 07:10:28 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2007/10/16/flvplayback-flv-preloader/</guid>
		<description><![CDATA[Here&#8217;s a way to Preload flv files before you play them in FLVPlayback component.
import mx.video.*;
var listenerObject:Object = new Object();
my_FLVPlybk.progressInterval = 001;
my_FLVPlybk.autoPlay = false;
listenerObject.progress = function(eventObject:Object) :Void  {
  var perc = Math.floor(eventObject.bytesLoaded * 100 / eventObject.bytesTotal);
  //implement you loading visual representation here
  if(perc == 100)
    my_FLVPlybk.play();
}
my_FLVPlybk.addEventListener("progress", listenerObject);
my_FLVPlybk.load("yourflv.flv");
You can hide [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a way to Preload flv files before you play them in FLVPlayback component.</p>
<p><code>import mx.video.*;</code></p>
<p><code>var listenerObject:Object = new Object();</code></p>
<p><code>my_FLVPlybk.progressInterval = 001;</code><br />
<code>my_FLVPlybk.autoPlay = false;</code></p>
<p><code>listenerObject.progress = function(eventObject:Object) :Void  {</code></p>
<p>  <code>var perc = Math.floor(eventObject.bytesLoaded * 100 / eventObject.bytesTotal);</code><br />
  <code>//implement you loading visual representation here</code></p>
<p>  <code>if(perc == 100)</code><br />
   <code> my_FLVPlybk.play();</code></p>
<p><code>}</code></p>
<p><code>my_FLVPlybk.addEventListener("progress", listenerObject);</code><br />
<code>my_FLVPlybk.load("yourflv.flv");</code></p>
<p>You can hide the player while its getting downloaded and show it when its fully downloaded. Make sure to set the autoplay option to false.</p>
<p>Happy coding <img src='http://www.vaishalimistry.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2007/10/16/flvplayback-flv-preloader/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP OpenCerti</title>
		<link>http://www.vaishalimistry.com/2006/01/06/php-opencerti/</link>
		<comments>http://www.vaishalimistry.com/2006/01/06/php-opencerti/#comments</comments>
		<pubDate>Fri, 06 Jan 2006 02:18:28 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2006/01/06/php-opencerti/</guid>
		<description><![CDATA[Ever heard of a certification where you can contribute questions? Well here is one of that kind. PHP OpenCerti, an idea floated by Nirav Mehta, a good friend of mine. Its a community project, where you can contribute in any way you like - mentor people, provide code / questions / ideas, promote the project, [...]]]></description>
			<content:encoded><![CDATA[<p>Ever heard of a certification where you can contribute questions? Well here is one of that kind. <strong>PHP OpenCerti</strong>, an idea floated by <a href="http://www.mehtanirav.com">Nirav Mehta</a>, a good friend of mine. Its a community project, where you can contribute in any way you like - mentor people, provide code / questions / ideas, promote the project, invite more leaders, anything! PHP developers would be easily able certify their PHP skills.</p>
<p>More details about the project  <a href="http://www.mehtanirav.com/categories/technology/opencerti/">here</a>. Consider it as your project and make a difference <img src='http://www.vaishalimistry.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2006/01/06/php-opencerti/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Radio City Online</title>
		<link>http://www.vaishalimistry.com/2006/01/04/radio-city-online/</link>
		<comments>http://www.vaishalimistry.com/2006/01/04/radio-city-online/#comments</comments>
		<pubDate>Wed, 04 Jan 2006 02:11:27 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2006/01/04/radio-city-online/</guid>
		<description><![CDATA[Tired of listening to the same songs while working??? Well here&#8217;s a break. Listen to radio online. Of course we have the biggies like yahoo music and all. But what about a hindi radio?
mms://69.26.220.46/RadioSuno allows you to listen to Radio City FM. Not sure if its sprung out by the FM station itself or a [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of listening to the same songs while working??? Well here&#8217;s a break. Listen to radio online. Of course we have the biggies like yahoo music and all. But what about a hindi radio?</p>
<p>mms://69.26.220.46/RadioSuno allows you to listen to Radio City FM. Not sure if its sprung out by the FM station itself or a venture of a radio fan. One would require the latest version of Windows Media Player and good bandwidth to listen it.</p>
<p>Worth a hit and kill those hours at work or play. What say?</p>
<p>PS: Courtesy a forward from a colleague at work - Aslam</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2006/01/04/radio-city-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Set Focus on a Cell in Datagrid in Flex 2.0</title>
		<link>http://www.vaishalimistry.com/2005/12/15/set-focus-on-a-cell-in-datagrid-in-flex-20/</link>
		<comments>http://www.vaishalimistry.com/2005/12/15/set-focus-on-a-cell-in-datagrid-in-flex-20/#comments</comments>
		<pubDate>Thu, 15 Dec 2005 05:13:48 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2005/12/15/set-focus-on-a-cell-in-datagrid-in-flex-20/</guid>
		<description><![CDATA[To set focus on a particular cell in Datagrid in Flex use the setFocusedCell(object,boolean) function. The object requires two properties itemIndex and columnIndex. Column index as the name signifies is the index or the column number of the column you want to select. Item index is the index or the row number of the row [...]]]></description>
			<content:encoded><![CDATA[<p>To set focus on a particular cell in Datagrid in Flex use the <code>setFocusedCell(object,boolean)</code> function. The object requires two properties <em>itemIndex</em> and <em>columnIndex</em>. Column index as the name signifies is the index or the column number of the column you want to select. Item index is the index or the row number of the row you want to select.</p>
<p>So your code would look something like this (dg is the instance name of the DataGrid):</p>
<p>The following method is for Flex 2 Beta 1:</p>
<blockquote><p><code>var __focusedCell:Object = new Object();<br />
__focusedCell.itemIndex = 1;<br />
__focusedCell.columnIndex = 2;<br />
dg.setFocusedCell(__focusedCell,true);</code></p></blockquote>
<p>The following method is for Flex 2 Beta 2:</p>
<blockquote><p><code>var __focusedCell:Object = new Object();<br />
__focusedCell.rowIndex = 1;<br />
__focusedCell.columnIndex = 2;<br />
dg.setEditedItemPosition(__focusedCell);</code></p></blockquote>
<p>So the above code would select the cell of 2nd row and the 3rd column. Remember indexes start from 0 and not 1 <img src='http://www.vaishalimistry.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2005/12/15/set-focus-on-a-cell-in-datagrid-in-flex-20/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dynamic Text and Masking in Flash</title>
		<link>http://www.vaishalimistry.com/2005/12/15/dynamic-text-and-masking-in-flash/</link>
		<comments>http://www.vaishalimistry.com/2005/12/15/dynamic-text-and-masking-in-flash/#comments</comments>
		<pubDate>Thu, 15 Dec 2005 05:03:12 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2005/12/15/dynamic-text-and-masking-in-flash/</guid>
		<description><![CDATA[Ever cracked your brains out wondering why your dynamic text field does not show the text when its masked??? I have been struggling with this problem from some time now.
All you need to do is embed characters. Select character sets that you want to embed from the embed option in the text field properties. Characters [...]]]></description>
			<content:encoded><![CDATA[<p>Ever cracked your brains out wondering why your dynamic text field does not show the text when its masked??? I have been struggling with this problem from some time now.</p>
<p>All you need to do is embed characters. Select character sets that you want to embed from the embed option in the text field properties. Characters that you have embeded will be shown &#8230; none others!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2005/12/15/dynamic-text-and-masking-in-flash/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pandora - Future Possibilities</title>
		<link>http://www.vaishalimistry.com/2005/11/24/pandora-future-possibilities/</link>
		<comments>http://www.vaishalimistry.com/2005/11/24/pandora-future-possibilities/#comments</comments>
		<pubDate>Thu, 24 Nov 2005 08:59:43 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2005/11/24/pandora-future-possibilities/</guid>
		<description><![CDATA[Got to know about Pandora from Nirav&#8217;s Blog. Its kind of a music discovery tool. In layman&#8217;s terms it searches and suggests music depending on a few options/keywords you enter. Further you can create station out of your search. Pandora will keep adding music to that station and you can listen to it while your [...]]]></description>
			<content:encoded><![CDATA[<p>Got to know about <a href="http://www.pandora.com">Pandora</a> from <a href="http://www.mehtanirav.com">Nirav&#8217;s Blog</a>. Its kind of a music discovery tool. In layman&#8217;s terms it searches and suggests music depending on a few options/keywords you enter. Further you can create station out of your search. Pandora will keep adding music to that station and you can listen to it while your are working (like me:) or just doing anything. Its pretty nice. Out of the 10 songs they suggested till now I&#8217;ve liked 6. Good way to discover excellent music out there and believe me there&#8217;s plently which we even do not know about.</p>
<p>Thinking about it I was just wondering what futher could Pandora do. While at it, I spotted my iPod nano(yeah I am one of those iPod junkies). What if Pandora was ported on to iPod? You could connect to internet and listen to Pandora, download songs you like. Or just download the songs in a compressed format and listen to them later on. Would be a boon for music buff&#8217;s like me!!! What say Apple and Pandora??? <img src='http://www.vaishalimistry.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2005/11/24/pandora-future-possibilities/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash at snail&#8217;s pace on Firefox</title>
		<link>http://www.vaishalimistry.com/2005/09/20/flash-at-snails-pace-on-firefox/</link>
		<comments>http://www.vaishalimistry.com/2005/09/20/flash-at-snails-pace-on-firefox/#comments</comments>
		<pubDate>Tue, 20 Sep 2005 09:59:29 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2005/09/20/flash-at-snails-pace-on-firefox/</guid>
		<description><![CDATA[Yes, I am also one of those troubled souls when it comes to getting your project work cross-browser. It drives me crazy getting things to work in the exact same way on IE and Firefox.
Problem 1:
One of the flash intro&#8217;s I made ran very slowly on Firefox. It worked just perfect on IE. The intro [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I am also one of those troubled souls when it comes to getting your project work cross-browser. It drives me crazy getting things to work in the exact same way on IE and Firefox.</p>
<p><strong>Problem 1:</strong><br />
One of the flash intro&#8217;s I made ran very slowly on Firefox. It worked just perfect on IE. The intro was jerky and gave a feeling that something heavy was getting downloaded in the background.</p>
<p>Fix:<br />
Remove &#8220;Transparent Windowless&#8221; option (if you have selected it) when exporting your flash movie and it will work like a charm on Firefox. Worked for me, should work for you too <img src='http://www.vaishalimistry.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Problem 2:</strong><br />
I exported a flash movie as 100% to fit perfectly to the browser and resize as and when the browser was resized. It worked just perfect on IE. In firefox the movie got loaded as a small box. It was not even the actual movie size. </p>
<p>Fix:<br />
Remove the <code>< !DOCTYPE></code> tag from the page where you are showing the flash movie. The movie will now fill the browser and resize as you resize your browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2005/09/20/flash-at-snails-pace-on-firefox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Logo</title>
		<link>http://www.vaishalimistry.com/2005/09/01/google-logo/</link>
		<comments>http://www.vaishalimistry.com/2005/09/01/google-logo/#comments</comments>
		<pubDate>Thu, 01 Sep 2005 13:16:46 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2005/09/01/google-logo/</guid>
		<description><![CDATA[Google never stops amazing me with its new offerings.
Here&#8217;s the latest gig to create your own google logo.
Happy Googling.
]]></description>
			<content:encoded><![CDATA[<p>Google never stops amazing me with its new offerings.</p>
<p>Here&#8217;s the <a href="http://google.topmasala.com/" target="_blank">latest gig</a> to create your own google logo.</p>
<p>Happy Googling.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2005/09/01/google-logo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Process of Film Making</title>
		<link>http://www.vaishalimistry.com/2005/08/31/process-of-film-making/</link>
		<comments>http://www.vaishalimistry.com/2005/08/31/process-of-film-making/#comments</comments>
		<pubDate>Wed, 31 Aug 2005 05:53:40 +0000</pubDate>
		<dc:creator>Vaishali</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.vaishalimistry.com/2005/08/31/process-of-film-making/</guid>
		<description><![CDATA[Had an elocution competition in office on Tuesday. Spoke on the topic of  how films are made. Here&#8217;s the bit from it.
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
The first Indian feature film was released in 1913, made by Dadasaheb Phalke and was called Raja Harishchandra. Filming back then was very unstandardized since depended directly on the cameraman and how he [...]]]></description>
			<content:encoded><![CDATA[<p>Had an elocution competition in office on Tuesday. Spoke on the topic of  how films are made. Here&#8217;s the bit from it.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>The first Indian feature film was released in 1913, made by Dadasaheb Phalke and was called Raja Harishchandra. Filming back then was very unstandardized since depended directly on the cameraman and how he moved the camera. Films were shot on a single reel making them only 15-20 minutes. Since then the art of filming has come a long way. Today I will share with you the steps involved in modern day film making.</p>
<p>Step 1: Writing the Script<br />
A writer or a production house like Yash Raj films have a storyline in mind. Thoughts get the shape of Dialogues and Scenes. If the script is written by an independent writer he has to sell his script to a production house. A story editor and a producer go through the script and decide whether to buy it or not. The main character roles are sketched out and highlighted. After many edits and re-edits and the script is made final. </p>
<p>Step 2:  Pre-Production<br />
Careful execution is the first step to ensuring that the film will turn out well. In a word it is film planning. The producers will seek out directors whose talents match the subject matter of the story. Once the script is agreed on by all members, the director begins to choose his cast and crew. He also appoints his production manager, his cinematographer, the person responsible for actually filming the movie, and his location manager. The director then starts a process called storyboarding where he creates a visual image for every scene in the movie.</p>
<p>Step 3: Production<br />
Production is the most grueling part of filmmaking and is indeed where &#8220;the magic happens&#8221;. At this stage the actual shooting of scenes happen. It consists of various important areas like lighting, locations, weather, dialogue recording, retakes etc. The cast and crew can frequently spend 12 or more hours on the set, filming only three or four pages of script. </p>
<p>Step 4: Post-Production<br />
Post-Production involves editing and correction, reshoots, color-correction, voice recording and marketing, Editing eliminates unwanted footage and scenes are placed in a coherent order. Titles and credits are added. The additional background noise are recorded. The final step of making the movie is to show it and this is where marketing comes in. The key factor here is to show to it to an audience that match the film. The film is then sent for distribution where they are released in theatres for public viewing.</p>
<p>So there you have it, the basic outline of the filmmaking process. Hope it gave you some new insights or maybe just passed the time.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vaishalimistry.com/2005/08/31/process-of-film-making/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
