Correct syntax for passing 2 values?

is this correct:

getURL(“webform1.aspx?id=0&status=I”,0,“Get”);

I need to pass 2 values

value 1 is id
value 2 is status

please advice.

thanks :h:

[AS]var urlGetter:MovieClip=this.createEmptyMovieClip(“ug”, this.getNextHighestDepth());
urlGetter.id=0;
urlGetter.status=“I”;
urlGetter.getURL(“webform1.aspx”, “_blank”, “GET”);[/AS]

should do the trick…

Thank you Devoiner… I think I got more confused with your coding. hehe.

:look: