IS THERE ANY WEBSITE WHERE I CAN BUY+DOWNLOAD A SCRIPT?

Question by :
is there any website where i can buy+download a script?
I’m in desperate need of a copy of Painted churches by Tina Howe. I need to read the full script. Where can i get it sent overseas quickly? If it would take longer then 3 weeks, then what website can i get it sent to in US quickly? But preferably is there any website i can pay for it to load on my computer? If so, i am horrible with technology so could u explain how also ! Thanks heaps
——————————————
Answer by meat
Maybe. Begin by going to the usual sites (these are sites for screenplays, not play scripts):
www.script-o-rama.com
www.simplyscripts.com
www.imsdb.com
——————————————
Give your own answer to this question below!









about 2 years ago
For valid XML, escape the non-XML in a CDATA block,
==========================
==========================
For older browsers that don’t recognize CDATA, comment out these via JavaScript comments,
==========================
Voila. See: http://javascript.about.com/library/blxhtml.htm
Note that using is *not* recommended, since this may not work in newer browsers or future browsers. It may simply comment out your JavaScript altogether.
Regards,
-m
about 2 years ago
You don’t declare what urltext refers to in the function. I know you IDed an element that, but you need to reference it in the script itself.
You also need to terminate your statements.
There is also ne element IDed as urlbar.
function changeVisible()
{
var urltext = document.getElementById( ‘urltext’ ); // INSERT THIS LINE
urltext.style.opacity=’0′; // TERMINATE STATEMENTS WITH SEMICOLONS
urltext.style.filter = ‘alpha(opacity=0)’;
}