Results 1 to 1 of 1
  1. #1
    jeremy5189
    jeremy5189 is offline
    Guest
    Join Date
    2013 Feb
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Read/Post Value From/To Flash Object in webpage

    1. View the page source code, search for string "<embed" or "<object"

    2. Look for attribute inside, "src" must be refering to a swf file, if so, find the "id" and "name" attribute and copy it's content

    3. use the following code to get value from flash object
    Code:
    var obj = document.getElementById("swfApplication");
    obj.GetVariable("/:message");
    message means the variable name in the flash object

    4. use the following code to set value to the flash object

    Code:
    var obj = document.getElementById("swfApplication");
    obj.SetVariable("/:message", "data");

Similar Threads

  1. [C#] How to hack flash games
    By Dwar in forum Game Researching Tutorials
    Replies: 4
    Last Post: 2013-07-20, 06:29 PM
  2. Flash Developer
    By Hellshell in forum Introduction / Say 'Hello'
    Replies: 1
    Last Post: 2012-12-23, 12:08 AM
  3. [Help] Help me to hack a flash game
    By ohyeah in forum General Talk
    Replies: 0
    Last Post: 2012-12-02, 01:43 PM
  4. Flash Desinfector
    By jonasalexand in forum Trash Bin
    Replies: 3
    Last Post: 2012-01-13, 02:02 PM
  5. Hacking flash games with CE
    By Dwar in forum Game Researching Tutorials
    Replies: 0
    Last Post: 2010-11-29, 04:16 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •