flash variable send to director

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default 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 director since flash, but I need send a varible string and not working.

    please, you can help me.


    rov07 webforumsuser@macromedia.com 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. 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...
    4. 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...
    5. 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...
  3. #2

    Default Re: flash variable send to director

    hi <name>

    this is quite simple. There are 3 (mayB more) methods to interact with
    Director from Flash
    let me give you the one I use most..

    In flash, say you need to send this string "Hello! from Flash"
    Put this in a Frame / Mouse Event
    > getURL ("Hello! from Flash");
    In Director, on the flash sprite behaviour, write this
    >on getURL me, stringFromFlash
    > put stringFromFlash
    > end
    Thats all! First time I learnt this, I was also wondering how to go about
    it!

    Good Luck
    Kart

    "rov07" <webforumsuser@macromedia.com> wrote in message
    news:bj8n4r$l39$1@forums.macromedia.com...
    > 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 director since flash, but I need send a varible string and not working.
    >
    > please, you can help me.
    >
    >

    Creative Acceleration 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