라벨명에 변수를 넣고싶어서그러는데 어렵네요..
예를들면
함수를
에러검출(현재진행라벨,에러시라벨)
{
if error = on
{
if IsLabel(에러시라벨)
{
Goto, %에러시라벨%
}
}
else
{
if IsLabel(현재진행라벨)
{
Goto, %현재진행라벨%
}
}
return
}
과같은식으로 함수를 짜고 불러오면.. 라벨을 못찾아가는데요
어떤부분을 수정해야할까요
오핫키홈피에는 분명
When using a dynamic label such as %MyLabel%, an error dialog will be displayed if the label does not exist. To avoid this, call IsLabel() beforehand. For example:
if IsLabel(VarContainingLabelName) Goto %VarContainingLabelName%
이런내용이있는데 말입니다 ㅜㅜ
아.. 자문자답.. 함수내에서는 gosub 는 가능하지만 함수안의 라벨로만 goto 가 가능하네요.