Your Ad Here

Posted By

lzyy on 09/18/08


Tagged

URLVariables


Versions (?)

Who likes this?

2 people have marked this snippet as a favorite

THEPWN3R
coprolit


assigning dynamic variables to URLVariables()


 / Published in: ActionScript 3
 

URL: http://www.chris-underhill.com/public/?p=17

给URLVariables添加变量

  1. var variables:URLVariables = new URLVariables();
  2.  
  3. for (var q:int = 0; q < iterationY; q++) {
  4. var myTextField = getChildByName(”textF”+ q);
  5. variables[fieldTitles[q]] = myTextField.text;
  6. }

Report this snippet  

You need to login to post a comment.