AssignName

 From:  Michael Gibson
9717.16 In reply to 9717.15 
Hi Pilou, that script error can be fixed by updating the EndDialog function in AssignNameDialog.htm to this:

code:
			function EndDialog()
			{
				val = false;

				if ( window['namelist'] )
					val = namelist.value;
				
				if ( !val )
					moiWindow.endDialog(-1);
				else
					moiWindow.endDialog(val);
			}


- Michael