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

  1. #1

    Default Flash Email Links

    When you bring flash into director..why does it disregard the email links? Or does it or is it ust me? (I don't know Director too well yet)

    Any help would be appreciated. :)
    Orestes31 Guest

  2. Similar Questions and Discussions

    1. Resolving links for HTML email
      We like to use Contribute to send HTML based email from pages we create for our website. Problem is, Contribute uses short addresses that are...
    2. Email links
      Hi All, I am new to all this so please forgive my ignorance! I am trying to create a link that when activated it will open a blank email with...
    3. Troubleshoo Email links in PDF documents
      How do I place a functional email link in a PDF Document I create. I've highlighted what I want to embed the email link in, and then used the create...
    4. How to give email links in Projector.exe.In Flash MX
      Hi, I am Ajeet, I am working on a Project based on Flash. I have to give an e-mail link of my company in my FlashMX Projector File. on (release) {...
    5. Hiding email links from spammers
      Instead of a mailto link, put in a link to a PHP script that contains these lines: <?php header("Location: mailto:test@test.nz"); ?> and...
  3. #2

    Default Re: Flash Email Links

    In short, when Flash issues a getURL command, it sends it to the host
    application to deal with. A browser knows what to do when it is told to
    navigate to a URL, or process a mailto. So when you run Flash in Director, it
    send the getURL event to direcotr, but by default, it doesn't know how to
    process it (Search the Director forum archives for get URL for more on this).

    The solution is to create a getURL handler in a Director movie script and tell
    it how to process the accompanying data - which Director can do with the
    gotonetpage command

    on getURL theData
    goToNetPage(theData)
    end

    Note that in a projector, if you issue a mailto, gotonetpage will first call
    up a browser window which will then process the mailto and open up an email
    client. The free xtra [L=openURL]http://www.mods.com.au/xtras/default.htm[/L]
    can process the command directly so you don't get the empty browser window.

    on getURL theData
    baOpenURL(theData)
    end

    hth

    johnAq

    johnAq 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