<br>
<br>
<p>no. scripting is just chunks of code in scripting language. scripting has nothing to do with a compiler or an IDE. scripting is used when you need some sort of event, and you can;t implement a whole program that would do it (too big)
it is also used to do secure transactions over net, and basically most scripts- perl,cgi, php, etc- are used instead of static html pages= the pages are generated by scripts when a user request is proceessed. in static html, you need all the pages to be uploaded in order for users to view it.</p>
<p>for example, here is small chunk of script that enables you to rotate any text in a webpage:
(copy and paste all of this in a .txt file and save it as a html file- you’ll see what Im talking about)</p>
<p>
<title>JavaScript - 3D Text</title>
<meta http-equiv=“Content-Type” content=“text/html; charset=windows-1251”>
<!-- HEAD START HERE –>
<script language=“JavaScript”>
<!–
var timer
function initiate() {
mytext1.Rotate(0,0,10)
mytext2.Rotate(0,0,-10)
mytext3.Rotate(0,5,0)
timer=setTimeout(“initiate()”,20)
}</p>
<p>// - End of JavaScript - –>
</script></p>
<!-- HEAD END HERE –>
<p>
</p>
<!-- BODY START HERE –>
<p><object id=“mytext1” classid=“CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6” style=“POSITION:absolute;TOP:0px;LEFT:200px;WIDTH:300;HEIGHT:300”>
<param name=“Line0001” value=“SetFillColor(0,0,255)”>
<param name=“Line0002” value=“SetFont(‘Verdana’,60, 700, 0, 0, 0)”>
<param name=“Line0003” value=“Text(‘Hello’, 0, 0, 0)”>
</object></p>
<p><object id=“mytext2” classid=“CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6” style=“POSITION:absolute;TOP:0px;LEFT:200px;WIDTH:300;HEIGHT:300;”>
<param name=“Line0001” value=“SetFillColor(255,0,0)”>
<param name=“Line0002” value=“SetFont(‘Verdana’,40, 700, 0, 0, 0)”>
<param name=“Line0003” value=“Text(‘stranger’, 0, 0, 0)”>
</object></p>
<p><object id=“mytext3” classid=“CLSID:369303C2-D7AC-11d0-89D5-00A0C90833E6” style=“POSITION:absolute;TOP:0px;LEFT:0px;WIDTH:600;HEIGHT:300;”>
<param name=“Line0001” value=“SetFillColor(255,255,255)”>
<param name=“Line0002” value=“SetFont(‘Verdana’,24, 700, 0, 0, 0)”>
<param name=“Line0003” value=“Text(‘welcome to CC’, 0, 0, 0)”>
</object>
<!-- BODY END HERE –></p>
<p>
</p>