Search code examples
actionscript-3variablestextactionscripturlrequest

Actionscript help : 1084: Syntax error: expecting rightparen before abc


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


Solution

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

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