Re: Error - cant get around! Expected ;
Posted by
Gabriel Landini on
Jun 29, 2011; 8:28am
URL: http://imagej.273.s1.nabble.com/Error-cant-get-around-Expected-tp3684050p3684053.html
On Wednesday 29 Jun 2011 07:36:58 you wrote:
> The brackets were put in by the error message.
>
> There are no preceeding erroneous colons etc. I have finetoothed it and all
> appears well.
>
> I have not capitalised the if command. It is bascially
> if(var==1){
> Dialog.create()
>
> Then 3 simple dialog commands to define a variable
> }
>
> There are then 100 lines of macro before this expected ;
>
> I don't get it!
You missed a ";" after the Dialog.create():
Dialog.create();
Cheers
G.