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

  • Home
  • SEARCH
  • 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 556759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:57:13+00:00 2026-05-13T11:57:13+00:00

I was wondering if there was a scripting language that one could use to

  • 0

I was wondering if there was a scripting language that one could use to to interact with a flash object on a webpage? I am trying to automate some tasks but the webpage uses flash.

Thanks for the help!

Edit: I am trying to fill out a form basically click a few “check boxes” and then a submit button but I would like to know if its possible to automate this task.

  • 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-05-13T11:57:14+00:00Added an answer on May 13, 2026 at 11:57 am

    Using ExternalInterface allows you to communicate between ActionScript and JavaScript.

    Here are a few examples from the adobe site to get you started with ExternalInterface.

    Here is the JavaScript to create and submit a form:

    function createAndSubmitForm(url, formParams) {
        var newForm = document.createElement("form");
        newForm.setAttribute("action", url);
        newForm.setAttribute("method", "POST");
    
        for (var key in formParams) {
            var hiddenField = document.createElement("input");
            hiddenField.setAttribute("type", "hidden");
            hiddenField.setAttribute("name", key);
            hiddenField.setAttribute("value", formParams[key]);
    
            newForm.appendChild(hiddenField);
        }
    
        document.body.appendChild(newForm);
        newForm.submit();
    }
    

    To call it, add this call to your ExternalInterface (ActionScript) and add your parameters:

    createAndSubmitForm('thisurl.ext', {param1: 'value1', param2: 'value2'});
    

    If you want to access an existing form control (a checkbox, for example, and check it), then do this:

    var form = document.forms[0];
    document.getElementById('checkboxId').checked = true;
    form.submit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am wondering if there is any language feature/library/tools/techniques I could use to call
I'm doing some scripting in PowerShell, and I was wondering if there's a way
Are there any software packages or projects that provide the scripting language shells? I
i was wondering if anybody knows of a nice scripting language that can be
I was just wondering what the best online scripting language is to use for
I'm trying to use a command-line client to automate some work on an ASP.NET
I am wondering if there are any statically typed, embeddable scripting languages. Python, JavaScript,
Wondering if there is any way to get the lambda expressions that result from
Wondering if there is a good way to generate temporary URLs that expire in
Wondering if there is any tool that can help me to detect a pronoun's

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.