answersLogoWhite

0


Best Answer

Depending on the actor, the shooting script can be altered on the set, or not, again, depending on the actor.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Do actors often have a great deal of creative input on the script of a film?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Java script program to Print the Fibonacci series using array?

<script type = "text/javascript"> var input; var rev = 0; input=window.prompt ("Please enter a 5-digit number to be reversed."); input = input * 1; while (input > 0) { rev *= 10; rev += input % 10; input /= 10; } document.write ("Reversed number: " + rev); </script>


What type of input that is a set of instructions that direct the computer?

A program or script


What does the Tabindex attribute do?

The tabindex is a script which is used on websites with online forms. By adding this script to ones webpage, it would take a user through the form to input information. One can create the script so the form is filled in the order which the administer prefers.


What is the name of an open source program to draw boxes-and-arrows diagrams based on a simple script input language?

Paint.NET


Write a shell script to check whether the given input is prime or not?

shell script for check whether the given no is prime or not??echo "input any number:"read nono=`expr $no`i=`expr 2`while [ $i -lt $no ]doif [ `expr $no % $i` -eq 0];thenecho "$no is not a prime no.."break 2fii=`expr $i +1`doneif [ $i -eq $no ];thenecho "$no is a PRIME no..."fi


Which soundcards offer S/PDIF input?

Turtle Beach RIVIERA and Auzentech AZT-RAIDER X-Raider, oh and Creative labs.


What is difference between test case and test scenario?

A test case represents the compilation of the test scenario, test script and expected results. Whereas the test script only represents the description of the input used to validate the assertion captured in the test requirement.


Program to fnd the biggest of 3 numbers in Java script?

Here is the code: <html> <head> <script type="text/javascript" langage="javascript"> function getHighest() { var a = parseInt(document.getElementById("num1").value); var b = parseInt(document.getElementById("num2").value); var c = parseInt(document.getElementById("num3").value); if((a>b)&&(a>c)) { alert(a+" is the highest number"); } else if((b>a)&&(b>c)) { alert(b+ " is the highest number"); } else if((c>a)&&(c>b)) { alert(c+ " is the highest number"); } else { alert("One of them is not an int"); } } </script> </head> <body> Input a: <input type="text" name="number1" id="num1" /><br /> Input b: <input type="text" name="number2" id="num2" /><br/> Input c: <input type="text" name="number3" id="num3" /><br/> Submit: <input type="submit" name="submit" value="submit" onclick="javascript:getHighest();return false;" /> </body> </html>


Is this Javascript Code Correct?

<html> <head> <script type="text/javascript"> // Start with value 1 var StudentCurrentID = 1 function Dissplay(StudentCurrentID) { document.write ("<p>Student Number"+ StudentCurrentID +":<INPUT TYPE=TEXT NAME=Student"+StudentCurrentID+"name></p… StudentCurrentID++} </script> </head> <body><script type="text/javascript"> StudentsTotalNum = Prompt("Enter Total Number of Students"); return StudentsTotalNum; </script> <form name=StudentsNames> <script type="text/javascript"> for StudentCurrentID < StudentTotalNum { Dissplay(StudentCurrentID) }; </script> </form> </body> </html>


Can Javascript create 3D?

Javascript is a browser-run script, so I highly doubt that Javascript possesses the capabilities to create 3-D images, but it can input them into the webpage.


How do you place command blocks in minecraft classic?

You need to be in creative mode in order to input commands into the command block.


Create an HTML page which pops up an alert message?

<html> <head> <script type="text/javascript"> function show_alert() { alert("I am an alert box!"); } </script> </head> <body> <input type="button" onclick="show_alert()" value="Show alert box" /> </body> </html>