escaped url (variables) in a banner

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

  1. #1

    Default escaped url (variables) in a banner

    Hi, I have a banner which lets you put in your postcode to find your nearest
    meeting. I have two varibles which are added on to the url. My code currently
    is this:
    findbutton.onRelease = function() {

    getURL(_root.clickTag+"?href=http://www.mydomain.co.uk/util/gmf/gmf_search_resul
    ts.aspx?pg=0&s=ZIP&z="+_root.post+"+"+_root.code, "_blank");
    };

    However the guys distributing the ad say that the url (inc appended
    variables) should be escaped (all or just the variables) before being
    concantenated with the clickTAG variable.

    It may be a silly question, but how do I do that?

    Many thanks
    Lynette


    Nett77 Guest

  2. Similar Questions and Discussions

    1. #39341 [NEW]: pg_fetch_assoc returns escaped data
      From: jasen at treshna dot com Operating system: debian linux PHP version: 4.4.4 PHP Bug Type: PostgreSQL related Bug...
    2. Has anyone seen the "Mad Mad House" banner or the Pizza Hut banner? [video]
      Has anyone seen these two banners anyplace? I've run into both of them on Yahoo and am desperately seeking a tutorial or any resources on how these...
    3. How do I glob with escaped spaces in a directory
      When I use: my @foo = glob "/foo/bar baz/*"; or my @foo = glob "/foo/bar\ baz/*"; Glob doesn't return the files in those directories, @foo...
    4. #22382 [Com]: fgetcsv does not allow escaped quotes
      ID: 22382 Comment by: mr dot heat at gmx dot de Reported By: Stevenv at operamail dot com Status: Closed Bug...
    5. bash: for to, reading escaped spaces in filenames
      Hello, I need to scan a directory for the file names contained in it. for _scantox in $(ls $_tox); do ...... done works just file with...
  3. #2

    Default Re: escaped url (variables) in a banner

    Sorry but, RTFM!
    Press F1, Type "escape" in Help search box. Review the information on the escape() function
    mm_screen_name 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