assigning dynamic variables to URLVariables()


/ Published in: ActionScript 3
Save to your folder(s)

给URLVariables添加变量


Copy this code and paste it in your HTML
  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. }

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.