Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8547535
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T13:17:13+00:00 2026-06-11T13:17:13+00:00

I new write a project to use flash do the google form work. But

  • 0

I new write a project to use flash do the google form work.
But it can’t post any data to google form.

submit code:

var ulpost:URLLoader = new URLLoader()
var url:String = htmlformat.form.data.action
var req:URLRequest = new URLRequest(url)
var vars:URLVariables = new URLVariables()
for (var name:String in dic) {
    var eachParam:Object = dic[name] as Object
    if (eachParam is TextInput) {
        vars[name]=TextInput(eachParam).text
    }else if (eachParam is TextArea) {
        vars[name]=TextArea(eachParam).text
    }else if (eachParam is RadioButtonGroup) {
        vars[name] = RadioButtonGroup(eachParam).selection.label
    }else if (eachParam is ComboBox) {
        vars[name] = ComboBox(eachParam).selectedLabel
    }
}
vars['pageNumber']="0"
vars['backupCache']=""
vars['submit']="Submit"
req.data = vars
ulpost.dataFormat = URLLoaderDataFormat.TEXT
req.contentType= "application/x-www-form-urlencoded";
req.method = URLRequestMethod.POST
EventCenter.defaultCenter().addObject(Event.COMPLETE,ulpost,evt_ulpost_com)
EventCenter.defaultCenter().addObject(IOErrorEvent.IO_ERROR,ulpost,evt_ulpost_err)
EventCenter.defaultCenter().addObject(HTTPStatusEvent.HTTP_RESPONSE_STATUS, ulpost, evt_ulpost_status)
EventCenter.defaultCenter().addObject(SecurityErrorEvent.SECURITY_ERROR, ulpost, evt_ulpost_err2)
ulpost.load(req)

vars:

submit=Submit&entry%2E5%2Esingle=test&entry%2E1%2Egroup=%E6%99%AE%E9%80%9A&entry%2E7%2Esingle=&entry%2E0%2Egroup=A&pageNumber=0&entry%2E4%2Esingle=game%5FMistyJewel&backupCache=

response status:

500

and it back a error page string:

<!DOCTYPE html><html lang="en" ><head><meta name="description" content="Web word processing, presentations and spreadsheets"><link rel="shortcut icon" href="//ssl.gstatic.com/docs/spreadsheets/favicon_jfk.png"><title>Google Docs Error</title><link href="//fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet" type="text/css"><style>/* Copyright 2012 Google Inc. All Rights Reserved. */
.goog-inline-block{position:relative;display:-moz-inline-box;display:inline-block}* html .goog-inline-block{display:inline}*:first-child+html .goog-inline-block{display:inline}#drive-logo{color:#91959c;font-family:"Open Sans",Arial,sans-serif;font-size:27px;font-weight:300;position:absolute;text-shadow:0 1px 1px white;white-space:nowrap}#drive-logo img{padding:0 0.4em 0 0;position:relative;top:2px;vertical-align:middle}#drive-logo a{color:#91959c;text-decoration:none}#drive-logo span.goog-inline-block{margin-top:3px;vertical-align:top}</style><style type="text/css">body {background-color: #fff; font-family: Arial,sans-serif; font-size: 13px; margin: 0; padding: 0;}a, a: link, a: visited {color: #112ABB;}</style><style type="text/css">.errorMessage {font-size: 12pt; font-weight: bold; line-height: 150%;}</style></head><body><div style="margin: auto; max-width: 750px;"><div style="margin: 80px 40px 20px 40px; position:relative; "><div style="position: absolute; top: -80px;"><h1 id="drive-logo"><a href="/"><img src="//www.google.com/images/logos/google_logo_41.png" width="116" height="41" alt="Google logo" ><span class="goog-inline-block">Drive</span></a></h1></div><p style="padding-top: 15px">Google Docs has encountered a server error. If reloading the page doesn't help, please <a href="http://docs.google.com/support/bin/request.py?hl=en&ctx=docs&contact_type=server_error">contact us</a>.</p><p>We&#39;re sorry, a server error occurred. Please wait a bit and try reloading your spreadsheet.<br>To discuss this or other issues, visit the <a href="http://productforums.google.com/forum/#!forum/docs">Google Docs Help forum</a>. To see the list of known problems, check the <a href="http://docs.google.com/support/bin/static.py?hl=en&page=known_issues.cs">Google Docs Known Issues page</a>.</p><p><br><b>Sorry, and thanks for your help!</b><br><i>- The Google Docs Team</i></p></div></div></body></html>

I had try any way. But don’t work. the back page is the same as web page form action url.

🙁

snapshot here:(can’t upload)
https ://docs.google.com/open?id=0ByCQf0ErsQlOVTI3aTJJVVY2S28

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T13:17:14+00:00Added an answer on June 11, 2026 at 1:17 pm

    Now I sovle it.

    form url is:
    https://docs.google.com/spreadsheet/viewform?hl=en_US&formkey=xxxx&ifq

    remove some params and use this page
    https://docs.google.com/spreadsheet/viewform?formkey=xxxx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use the rails 3.0.0.beta Is there any new syntax to write RJS, here
I am new write a pixel shader and use in my managed directx project,
I'm starting a new project and I want to use Test Driven Development, but
Steps to reproduce: Create a new C# console project. Write some code: class Foo
We use Django for writing our new project. Our designer wants to write templates
Im new on this project and am going to write, what i thought was
Whenever I write a new class and add some internal fields, I use an
If I write something like this: var img = $(new Image()).attr('src', image.src); How can
I am working on a new project and I am trying to write the
I'm new to Java, and have set myself a project to write so that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.