<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Adsense Script &#187; write</title>
	<atom:link href="http://scriptahead.com/tag/write/feed/" rel="self" type="application/rss+xml" />
	<link>http://scriptahead.com</link>
	<description></description>
	<lastBuildDate>Thu, 24 May 2012 05:00:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>HOW CAN I WRITE A SCRIPT IN PHP TO PARSE OUT COMMA SEPARATED WORDS (LIKE IN A SOCIAL WEB SITE)?</title>
		<link>http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/</link>
		<comments>http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/#comments</comments>
		<pubDate>Sat, 12 May 2012 05:02:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[comma]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[separated]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[words]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/</guid>
		<description><![CDATA[Question by John C: How can I write a script in php to parse out comma separated words (like in a social web site)? For example, If the user inputs a list of tags such as: tag,tagone,tag,tagtwo I want php to parse out the individual words and send them back to the server using regular]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by John C</i>: <br />How can I write a script in php to parse out comma separated words (like in a social web site)?</strong><br />
For example,</p>
<p>If the user inputs a list of tags such as:</p>
<p>tag,tagone,tag,tagtwo</p>
<p>I want php to parse out the individual words and send them back to the server using regular expressions (preg_match).  How do I do that?  I have never used regular expressions before.</p>
<p>Keep in mind that the number of words will be unknown.</p>
<p><span id="more-465"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by xizzi</i><br/>here&#8217;s an example maybe you can understand:</p>
<p>$  fruits = &#8220;mango, orange, papaya, apple, pineapple, grape&#8221;;<br />
 $  arrFruit = explode(&#8220;,&#8221;,$  fruits);   </p>
<p> foreach($  arrFruit as $  v){<br />
   echo trim($  v);<br />
 }</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW DO WRITE A SCRIPT ON IE FOR ADD A SITE TO TRUSTED SITE AND ENABLE ALL FEATURES ON CUSTOM LEVEL?</title>
		<link>http://scriptahead.com/345/how-do-write-a-script-on-ie-for-add-a-site-to-trusted-site-and-enable-all-features-on-custom-level/</link>
		<comments>http://scriptahead.com/345/how-do-write-a-script-on-ie-for-add-a-site-to-trusted-site-and-enable-all-features-on-custom-level/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 17:02:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[enable]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Level]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Trusted]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/345/how-do-write-a-script-on-ie-for-add-a-site-to-trusted-site-and-enable-all-features-on-custom-level/</guid>
		<description><![CDATA[Question by hajjizadeh2002: How do write a script on IE for add a site to Trusted site and Enable all features on Custom Level? Note that I want WRITE A SCRIPT to do this not doing manually. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Answer by GH057Trusted sites how to&#8230; http://windows.about.com/od/networking/ss/trusted_sites.htm &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Add your own answer in the comments!]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by hajjizadeh2002</i>: <br />How do write a script on IE for add a site to Trusted site and Enable all features on Custom Level?</strong></p>
<p>Note that I want WRITE A SCRIPT to do this not doing manually.</p>
<p><span id="more-345"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by GH057</i><br/>Trusted sites how to&#8230;</p>
<p>http://windows.about.com/od/networking/ss/trusted_sites.htm</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/345/how-do-write-a-script-on-ie-for-add-a-site-to-trusted-site-and-enable-all-features-on-custom-level/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HOW CAN I WRITE A SCRIPT THAT WILL CONTROL OR AUTOFILL PARTS OF ANY WEBSITE THAT I LAUNCH FROM MY PAGE?</title>
		<link>http://scriptahead.com/287/how-can-i-write-a-script-that-will-control-or-autofill-parts-of-any-website-that-i-launch-from-my-page/</link>
		<comments>http://scriptahead.com/287/how-can-i-write-a-script-that-will-control-or-autofill-parts-of-any-website-that-i-launch-from-my-page/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 17:02:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[autofill]]></category>
		<category><![CDATA[Control]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[parts]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/287/how-can-i-write-a-script-that-will-control-or-autofill-parts-of-any-website-that-i-launch-from-my-page/</guid>
		<description><![CDATA[Question by ed: How can I write a script that will control or autofill parts of any website that i launch from my page? I need a script (using Javascript, java, PHP, or any other language) that can control or autofill certain parts(such as a form) of any website (such as yahoo) that i launch]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by ed</i>: <br />How can I write a script that will control or autofill parts of any website that i launch from my page?</strong><br />
I need a script (using Javascript, java, PHP, or any other language) that can control or autofill certain parts(such as a form) of any website (such as yahoo) that i launch from my page. For example, I need a script that could look for the submit button of any site that i launch from my page.</p>
<p><span id="more-287"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Art Student</i><br/>Security restrictions prevent what you are trying to do. You will get an access denied error each time. Trust me. Been there. Done that.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Give your own answer to this question below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/287/how-can-i-write-a-script-that-will-control-or-autofill-parts-of-any-website-that-i-launch-from-my-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IS IT POSSIBLE TO WRITE A SCRIPT THAT WILL OPEN UP A WEBSITE ON DELAY OR WHEN THE COMPUTER SCREEN IS CLICKED.?</title>
		<link>http://scriptahead.com/286/is-it-possible-to-write-a-script-that-will-open-up-a-website-on-delay-or-when-the-computer-screen-is-clicked/</link>
		<comments>http://scriptahead.com/286/is-it-possible-to-write-a-script-that-will-open-up-a-website-on-delay-or-when-the-computer-screen-is-clicked/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 05:02:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[clicked.]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[delay]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[possible]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/286/is-it-possible-to-write-a-script-that-will-open-up-a-website-on-delay-or-when-the-computer-screen-is-clicked/</guid>
		<description><![CDATA[Question by Da Banana Man: Is it possible to write a Script that will open up a website on delay or when the personal screen is clicked.? My friend always scripts my personal so that after 30 Mins or so or when i click on the screen it sends me to some website of his]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Da Banana Man</i>: <br />Is it possible to write a Script that will open up a website on delay or when the personal screen is clicked.?</strong><br />
My friend always scripts my personal so that after 30 Mins or so or when i click on the screen it sends me to some website of his choosing.  I was wondering if someone could tell me how so that sometime I can get back at him.</p>
<p><span id="more-286"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by coryk125</i><br/>You could make a easy batch file.<br />
This is written to run through your personal command prompt.</p>
<p>Just to show you how this would work, open up your command prompt.<br />
Type in:<br />
start www.google.com</p>
<p>See how it opens google?</p>
<p>To make this script:<br />
1) Open notepad<br />
2) Type : begin <whatever website you want><br />
3) Save the file as (file).bat  just subsitute whatever filename you want</p>
<p>Then on his personal go to:<br />
Start >> Programs >> Accessories >> System Tools >> Task Scheduler</p>
<p>Then you can schedule this file to run once each hour, or however often you want! Be creative and have fun! If you want it to do anything else, let me know.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Give your own answer to this question below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/286/is-it-possible-to-write-a-script-that-will-open-up-a-website-on-delay-or-when-the-computer-screen-is-clicked/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: HOW CAN I WRITE A SCRIPT TO RETRIEVE PRICES FROM A WEBSITE AT SPECIFIC TIMES?</title>
		<link>http://scriptahead.com/226/qa-how-can-i-write-a-script-to-retrieve-prices-from-a-website-at-specific-times/</link>
		<comments>http://scriptahead.com/226/qa-how-can-i-write-a-script-to-retrieve-prices-from-a-website-at-specific-times/#comments</comments>
		<pubDate>Sun, 15 May 2011 05:04:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[prices]]></category>
		<category><![CDATA[retrieve]]></category>
		<category><![CDATA[specific]]></category>
		<category><![CDATA[times]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/226/qa-how-can-i-write-a-script-to-retrieve-prices-from-a-website-at-specific-times/</guid>
		<description><![CDATA[Question by ryanjn944299: How can I write a script to retrieve prices from a website at specific times? I am trying to retrieve stock prices from a website and would like to retrieve them during the night. I am open to using any script and storing them in either Excel or Google Docs (although Google]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by ryanjn944299</i>: <br />How can I write a script to retrieve prices from a website at specific times?</strong><br />
I am trying to retrieve stock prices from a website and would like to retrieve them during the night.  I am open to using any script and storing them in either Excel or Google Docs (although Google is preferred so that I do not need to leave my laptop on each night).</p>
<p><span id="more-226"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Jim Maryland</i><br/>What language are you developing the code in?  How are you planning to kick off the code?  What interface are you calling to obtain the stock prices?</p>
<p>First, let&#8217;s begin with the interface to the stock prices.  Does the site offer a public API (RPC web service, RESTful web service, servlet, etc&#8230;)?  If not, you will need to write the code to &#8220;scrape&#8221; the page and parse the results (and maintain it as the site might change their formatting).</p>
<p>Next, does your scripting or coding language support the interface?</p>
<p>Last, the script/code needs to be triggered to run at some interval.  You can specify a scheduled task in most environments (AT job on Windows, cron on Linux/UNIX, ?? for Macs), but I am not aware of Google offering any time based scripting options (probably would leave them open to being exploited as a platform to launch time delayed attacks).</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/226/qa-how-can-i-write-a-script-to-retrieve-prices-from-a-website-at-specific-times/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HOW DO YOU WRITE A SCRIPT TO SAVE A COMPLETE WEBSITE? PYTHON, C++, OR RUBY?</title>
		<link>http://scriptahead.com/220/how-do-you-write-a-script-to-save-a-complete-website-python-c-or-ruby/</link>
		<comments>http://scriptahead.com/220/how-do-you-write-a-script-to-save-a-complete-website-python-c-or-ruby/#comments</comments>
		<pubDate>Fri, 06 May 2011 05:33:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[complete]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Save]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/220/how-do-you-write-a-script-to-save-a-complete-website-python-c-or-ruby/</guid>
		<description><![CDATA[Question by zuser00: How do you write a script to save a complete website? Python, C++, or Ruby? How do you write a script in (python, c++, or ruby) that saves a complete website? By complete website I mean the html file and the folder that holds all the images, javascript, and css files of]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by zuser00</i>: <br />How do you write a script to save a complete website? Python, C++, or Ruby?</strong><br />
How do you write a script in (python, c++, or ruby) that saves a complete website?  By complete website I mean the html file and the folder that holds all the images, javascript, and css files of the website.  Normally this can be done by just Ctrl+S on any browser, but how do you write that into a script?</p>
<p><span id="more-220"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Michael</i><br/>Have you considered using a programme such as httrack? &#8211; http://www.httrack.com/</p>
<p>There is code available to incorporate httrack into python &#8211;  http://www.satzbau-gmbh.de/staff/abel/httrack-py/</p>
<p>However a single command can be used to save a complete website without resorting to any scripting (python or otherwise).  The httrack documentation includes the following example:</p>
<p>httrack &#8220;http://www.all.net/&#8221; -O &#8220;/tmp/www.all.net&#8221; &#8220;+*.all.net/*&#8221; -v</p>
<p>In this example, we ask httrack to begin the Universal Resource Locator (URL) http://www.all.net/ and store the results under the directory /tmp/www.all.net (the -O stands for &#8220;output to&#8221;) while not going beyond the bounds of all the files in the www.all.net domain and printing out any error messages along the way (-v means verbose).</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/220/how-do-you-write-a-script-to-save-a-complete-website-python-c-or-ruby/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW DO I WRITE A SCRIPT FOR MY WEBSITE SO I CAN HAVE A LOG ON PANEL?</title>
		<link>http://scriptahead.com/123/how-do-i-write-a-script-for-my-website-so-i-can-have-a-log-on-panel/</link>
		<comments>http://scriptahead.com/123/how-do-i-write-a-script-for-my-website-so-i-can-have-a-log-on-panel/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 05:03:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/123/how-do-i-write-a-script-for-my-website-so-i-can-have-a-log-on-panel/</guid>
		<description><![CDATA[Question by Sharpshooter: How do I write a script for my website so I can have a log on panel? I have a new website but it doesn&#8217;t come with a log on panel for my website. I talked to one of the employees and they stated I would have to write a script to]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Sharpshooter</i>: <br />How do I write a script for my website so I can have a log on panel?</strong><br />
I have a new website but it doesn&#8217;t come with a log on panel for my website. I talked to one of the employees and they stated I would have to write a script to put a log on panel on my website. Can you please help me! I have no idea how to do this.<br />
Are there scripts already writin that i can just get off of a website and use it for my clans webpage?</p>
<p><span id="more-123"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Cyrus</i><br/>You need a server-sided language (like PHP or ASP) and a database language (like SQL). You can see how to program in all of these at: http://w3schools.com/</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/123/how-do-i-write-a-script-for-my-website-so-i-can-have-a-log-on-panel/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: HOW DO I WRITE THE ACTION SCRIPT FOR A BANNER IN A SITE?</title>
		<link>http://scriptahead.com/66/qa-how-do-i-write-the-action-script-for-a-banner-in-a-site/</link>
		<comments>http://scriptahead.com/66/qa-how-do-i-write-the-action-script-for-a-banner-in-a-site/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 05:00:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[action]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/66/qa-how-do-i-write-the-action-script-for-a-banner-in-a-site/</guid>
		<description><![CDATA[Question by d_jhonu: how do i write the action script for a banner in a site? i&#8217;ve completed a web-site and on top of it i put a flash banner.the problem is that i cannot make the the buttons work..the connection to the others pages doesn&#8217;t work.i managed to make them work on my hard-drive]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by d_jhonu</i>: <br />how do i write the action script for a banner in a site?</strong><br />
i&#8217;ve completed a web-site and on top of it i put a flash banner.the problem is that i cannot make the the buttons work..the connection to the others pages doesn&#8217;t work.i managed to make them work on my hard-drive but after i upload the site they do not function anymore.any ideeas?</p>
<p><span id="more-66"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by StopWars</i><br/>hm,<br />
try using ABSOLUTE addressing, like this:<br />
on(release){<br />
getURL(&#8220;http://mysite/mypgae.html&#8221;);<br />
}</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Give your own answer to this question below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/66/qa-how-do-i-write-the-action-script-for-a-banner-in-a-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: HOW DO WE SCRIPT WRITE? IS THERE ANY GOOD WEB-SITE THAT EXPLAINS EVERYTHING FROM THE BASICS TO THE BEST&#8230;?</title>
		<link>http://scriptahead.com/9/qa-how-do-we-script-write-is-there-any-good-web-site-that-explains-everything-from-the-basics-to-the-best/</link>
		<comments>http://scriptahead.com/9/qa-how-do-we-script-write-is-there-any-good-web-site-that-explains-everything-from-the-basics-to-the-best/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 05:06:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[Best]]></category>
		<category><![CDATA[everything]]></category>
		<category><![CDATA[explains]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[good]]></category>
		<category><![CDATA[there]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/9/qa-how-do-we-script-write-is-there-any-good-web-site-that-explains-everything-from-the-basics-to-the-best/</guid>
		<description><![CDATA[Question by DollyBrownEyes: How do we script write? Is there any good web-site that explains everything from the basics to the best&#8230;? ..Can you recommend some good web-sites which explain script-writing for beginners? And perhaps a site that has got famous scripts online? Help somebody!!! Actually,I want to write for a Television &#8211; Series, but]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by DollyBrownEyes</i>: <br />How do we script write? Is there any good web-site that explains everything from the basics to the best&#8230;?</strong><br />
..Can you recommend some good web-sites which explain script-writing for beginners? And perhaps a site that has got famous scripts online? Help somebody!!! Actually,I want to write for a Television &#8211; Series, but I do not know how to do it..</p>
<p><span id="more-9"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Kevin</i><br/>Don&#8217;t be put off by the heading, there is a lot of very useful information for all genres of writing.</p>
<p>Study Skills, Essay Writing.</p>
<p>Essays remain an important method of assessment and enable examiners to discriminate between candidates, while also enabling candidates to display the skills and capabilities which they possess.</p>
<p>As the essay paper has evolved it has become more demanding with much more emphasis on posing questions which grant candidates to display the higher order skills. Professor Roy Wilkinson of Sheffield University has identified a pyramid of skills which A level examinations try to test.</p>
<p>http://www.bized.ac.uk/reference/studyskills/essay.htm</p>
<p>http://members.tripod.com/~lklivingston/essay/</p>
<p>http://www.world-english.org/</p>
<p>http://www.midlandit.co.uk/education/index.htm</p>
<p>http://www.bized.ac.uk/reference/studyskills/essay.htm</p>
<p>http://www.englishforums.com/</p>
<p>http://www.powa.org/</p>
<p>http://www.tee-garden.com/eberman/Creative_Writing.html</p>
<p>http://www.editorsforstudents.com/</p>
<p>http://www.writinghelp-central.com/</p>
<p>http://owl.english.purdue.edu/owl/</p>
<p>http://essayinfo.com/</p>
<p>http://mrbraiman.com</p>
<p>http://www.scribendi.com/advice/improve_your_essay.en.html</p>
<p>http://www.mindtools.com/speedrd.html</p>
<p>Kevin, Liverpool, England.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/9/qa-how-do-we-script-write-is-there-any-good-web-site-that-explains-everything-from-the-basics-to-the-best/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW DO YOU WRITE A MOVIE SCRIPT OR FICTIONAL STORY PROPERLY?</title>
		<link>http://scriptahead.com/6/how-do-you-write-a-movie-script-or-fictional-story-properly/</link>
		<comments>http://scriptahead.com/6/how-do-you-write-a-movie-script-or-fictional-story-properly/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 17:13:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[fictional]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[properly]]></category>
		<category><![CDATA[story]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/6/how-do-you-write-a-movie-script-or-fictional-story-properly/</guid>
		<description><![CDATA[Question by xox_em_xox99: How do you write a motion picture script or fictional story properly? I love writing, whether it&#8217;s a story or script. I would love to be a professional writer but do not know how to go about sending my stuff to the right person or company. Do you have any advice? Thanks.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by xox_em_xox99</i>: <br />How do you write a motion picture script or fictional story properly?</strong><br />
I love writing, whether it&#8217;s a story or script. I would love to be a professional writer but do not know how to go about sending my stuff to the right person or company. Do you have any advice? Thanks.</p>
<p><span id="more-6"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by mcsteamy14</i><br/>I would recommend sending them into contests&#8230;?  just gooooooooooogle it.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/6/how-do-you-write-a-movie-script-or-fictional-story-properly/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

