send a variable from flash to flashcom

Ask a Question related to Macromedia Flash Flashcom, Design and Development.

  1. #1

    Default send a variable from flash to flashcom

    Hi All,

    I'm trying to send a variable from my flash project to the flash comm server.
    In my main.asc file, I use some remoting code to update a table in a database,
    but need a variable from the client application

    The client application has a uid variable..but I can't figure out how to
    "trace" this on the server side.
    Any help would be appreciated.

    D

    draven000 Guest

  2. Similar Questions and Discussions

    1. Send Variable From ASP to Flash to ASP
      I'm really, really new to Flash and using Flash 8 Pro. This is what I'm trying to do. I have a list of cars, when someone clicks on a car, they...
    2. LoadVars-using send to pass a variable from flash to php
      For the life of me, I've tried everything: I've researched LoadVars on Adobe forum, used David Powers' books, googled 'flash to php', LoadVars,...
    3. Using Javascript to send a variable to FLASH
      Hello... If I send a variable to my site... Example --> http://mysite.com/?variable=test How do I import that variable into my FLASH...
    4. Send variable from Flash to HTML
      I have a quiz in Flash. I want to take the quiz results (testscore) and send it to an HTML page to be assigned to a variable. How do I send...
    5. flash variable send to director
      I have a problem, I needs send since flash to director a string but i can't. I found a example in director support that send a variable numeric to...
  3. #2

    Default Re: send a variable from flash to flashcom

    There's lots of ways to do it... here's one:

    on the server side:

    Client.Prototype.sendClientVar= function(myVar){
    //execute your code here
    trace("Incoming value is " + myVar);
    }

    on the client side:

    nameOfMyNetconnection.call("sendClientVar", null, "Hello Server");



    JayCharles Guest

  4. #3

    Default Re: send a variable from flash to flashcom

    hi jay

    Sorry for my english, iam frensh.
    I ave a quite same problem, I want to share my variable like you share an
    object. But It doesn't worck so, if you find a way for exchange the variable
    thanck to put your code.

    I f I find a way to do that ( may be this after noon) because I meet someone,
    I promise to put the code.



    martin_godart Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139