What is a continuation character and why is it used? It looks like: �¬

The Ã?¬ is known as a continuation character. It is used to break long lines of script content into shorter lines, allowing it to fit in the active window.

When the continuation character is used to break long lines, making the script more readable, the script, when run, will treat the shortened lines as one line.

To insert the continuation character in a line, hold down the “Optionkey and press “Return”. Note that the continuation character cannot be used within a text string without breaking the string into multiple parts and using the concatenation character (&).

Example Script:

display dialog "This is an example of a long line which may need a continuation character for better readability in small script windows, or to avoid line wrapping problems in email messages."

display dialog "This is an example of a long line which may need" & Ã?¬
	" a continuation character for better readability in small script" & Ã?¬
	" windows, or to avoid line wrapping problems in email messages."

or…

set the_answer to text returned of Ã?¬
	(display dialog "Please enter a number between 1 and 100." default answer Ã?¬
		"33" buttons {"Cancel", "Continue"} default button Ã?¬
		"Continue" with icon 1 giving up after 60)