Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

mandatoryprogrammer/FlashHTTPRequest

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FlashHTTPRequest

A simple Flash bridge for preforming Flash HTTP requests with JavaScript.

Syntax

FlashHTTPRequest.open( HTTP_METHOD, URI, BODY, JS_CALLBACK );

Example

<!DOCTYPE html>
<html lang="en">
<head>
        <meta charset="utf-8"/>
        <script src="flashhttprequest.js"></script>
        <script>
        // This function will be called when the Flash bridge has been loaded
        // Note that you can only request from sites that allow you to via their /crossdomain.xml policy
        function onhook() {
                FlashHTTPRequest.open('GET', 'http://www.example.com/', '', 'alert' );
                FlashHTTPRequest.open('POST', 'http://www.example.com/', 'var1=test&var2=test2', 'post_receiver' );
        }

        // Response data is passed as an argument to the callback defined
        function post_receiver( response ) {
            console.log( response );        
        }
        </script>
</head>
<body>
        <div id="flashBridge"></div>
</body>

About

A very simple bridge for performing Flash HTTP requests with JavaScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.