Results 1 to 4 of 4

Thread: Appa question

  1. #1
    Join Date
    Aug 2013
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default Appa question

    I'm trying to get APPA to work with a flash game. So far I've been able to get it to the URL, but I can't seem to set the target as the flash game

    sample code shows setting the target like so for a flash app
    appa_SetTargetName('MacromediaFlashPlayerActiveX')

    my question is, how do you figure out what the name of your target is? 'MacromediaFlashPlayerActiveX' is not working for me

  2. #2
    Join Date
    Aug 2013
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    Hi,

    Use appa_GetTargets()

    Simba Code:
    var s : Tstringarray;
    begin
      appa_GetTargets(s);
      writeln(s);
    end;

    You will get something like:

    Code:
    ['"Shell DocObject View":1377150', '"Internet Explorer_Server":918576', '"MacromediaFlashPlayerActiveX":525172']
    In my scripts I use appa_SetTargetHandle() instead of using target's name.

    btw.

    wrong section :/

  3. #3
    Join Date
    Aug 2013
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    Thanks! Where the hell is the right section btw?

    Also, is there a workaround for the broken KeyDown/KeyUp functions? I need to do a ctrl+click and I don't see a way to this using sendkeys!

  4. #4
    Join Date
    Aug 2013
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    Oh ,you've cought the biggest problem in APPA. I believe there is no way to bypass this bug without fixing source code. But I will think about it.

    btw.
    I think here http://villavu.com/forum/forumdisplay.php?f=486

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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