Difference between revisions of "Error Messages/41292"

 
Line 1: Line 1:
= Error Text Examples =
+
[[Category: Error messages]]
  
:An object name, assignment operator or end of line must follow the attribute name Title.
+
== Error text examples ==
 +
<pre style="background:white; border:white; margin-left: 1em; font-style:italic">
 +
An object name, assignment operator or end of line must follow the attribute name Title.
  
:An assignment operator or end of line must follow the attribute name Definition
+
An assignment operator or end of line must follow the attribute name Definition
 +
</pre>
  
= Cause =
+
== Cause ==
  
This typescript error occurs when a syntax error is made in a typescript command that begins with the name of an attribute.  For example, if you were to type the following in a button script:
+
This [[typescript]] error occurs when a syntax error is made in a typescript command that begins with the name of an attribute.  For example, if you were to type the following in a [[button]] script:
  
Title = Hello
+
:<code>Title = Hello</code>
  
 
You would get this error.  The correct syntax to set Title to Hello should be:
 
You would get this error.  The correct syntax to set Title to Hello should be:
  
Title : Hello
+
:<code>Title : Hello</code>
  
 
Another example would be:
 
Another example would be:
  
Definition Va1 = Va2^2
+
:<code>Definition Va1 = Va2^2</code>
 
 
= See Also =
 
  
 +
== See Also ==
 
* [[Typescript]]
 
* [[Typescript]]
 
* [[Inspection Commands]]
 
* [[Inspection Commands]]
 
* [[Object Manipulation Typescript Commands]]
 
* [[Object Manipulation Typescript Commands]]

Latest revision as of 01:00, 12 March 2016


Error text examples

An object name, assignment operator or end of line must follow the attribute name Title.

An assignment operator or end of line must follow the attribute name Definition

Cause

This typescript error occurs when a syntax error is made in a typescript command that begins with the name of an attribute. For example, if you were to type the following in a button script:

Title = Hello

You would get this error. The correct syntax to set Title to Hello should be:

Title : Hello

Another example would be:

Definition Va1 = Va2^2

See Also

Comments


You are not allowed to post comments.