문제

I was workin on a project, and i need to put a variable, between the text in URLRequest

url4 = new URLRequest("text/"abc"/text.png");

Any help?? Btw let's say abc is the variable i want to put

도움이 되었습니까?

해결책

You use + to add strings and variables together in AS3.

url4 = new URLRequest("text/"+abc+"/text.png");
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top