안녕하세요. 저는 set text 값에 {“하나”,"둘’,“셋”,“넷”.“다섯”,…} 의 값들을 루프로 한번씩 사용하려고 합니다. for each문을 사용하려고 해서, ‘키워드들’이라는 array of string 값의 변수를 만들고 {“하나”,"둘’,“셋”,“넷”.“다섯”,…}을 넣었습니다. 하지만 set text에 '키워드들’이라는 변수를 넣으면 string() 값은 string으로 변환할 수 없다며 오류가 떴습니다.
루프를 돌면서 하나의 item으로 루프를 완료할 때마다, 순차적으로 item을 넘기며 set text에 설정하려면 어떡해야 할까요?
You can only give string types in set text activity. You can’t pass the array of strings. Use for each to loop through the strings in the array and pass the string one at a time.
If you want to pass the all the strings at a time then use join function to join all the strings.