넥사크로는 javascript를 사용한다.
넥사크로플랫폼 실행 환경 최소 사양은 IE8
var str1 = "abc";
this.str2 = "123";
str3 = "abc";
var str1 = "abc";
this.str2 = "123";
str3 = "ABC";
this.Button00_onclick = function(obj:nexacro.Button,e:nexacro.ClickEventInfo){
//var 선언 : 생략 가능
str1 = "소문자";
//this. 선언 : this. 필수
this.str2 = "숫자"
this.alert("hello");
nexacro.getApplication().trace("로그1");
//세팅 : set_속성명
obj.set_text("그냥 안녕"); //수정
//확인
this.alert(obj.text); //수정
};