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

  1. #1

    Default query string

    hi there,
    i'm working on a very simple flash data integration project,
    i have been trying to send a query string without opening/reloading a browser
    for instance:
    [url]http://localhost/u2/test.asp?model=UG123[/url]
    i need send the above string out without reloading the browser
    i have tried
    on (release) { getURL("http://localhost/u2/test.asp?model=123"); }
    but it reload my browser..
    i have thought of using a dummy 0 px frameset
    but before i try on that, i like to achive this on flash
    any idea ..anyone?

    thanks in adv.

    nkaf Guest

  2. Similar Questions and Discussions

    1. How to retreive a Query string..?
      Hi, I want to retreive all the queries that were executed in the Page. I don't want to enable debugging in server..and don't want to store query in...
    2. Maintain query string and somehow auto refresh a pagewith that string intact
      I have a drill down where on page one the user selects criteria to narrow down the search for a speicific group of employees(like all hired between...
    3. Using NOT LIKE in Query String????
      OK, I know how to use to pull up all records that contains the keyword, but what about not containing the keyword? I've tried NOT LIKE but i get ...
    4. Query String - encrypt
      All, I often use a querystring in my ASP pages. for example: if val > 1 then Response.redirect "val1.asp?val=1&user=UserID End if Is there a...
    5. Quick String Query...
      I have been using PHP for a while now, although my knowledge of the inbuilt functions is pretty lacking. I am trying to remove a 'space' from the...
  3. #2

    Default Re: query string

    nkaf ha scritto:
    > hi there,
    > i'm working on a very simple flash data integration project,
    > i have been trying to send a query string without opening/reloading a browser
    > for instance:
    > [url]http://localhost/u2/test.asp?model=UG123[/url]
    > i need send the above string out without reloading the browser
    > i have tried
    > on (release) { getURL("http://localhost/u2/test.asp?model=123"); }
    > but it reload my browser..
    > i have thought of using a dummy 0 px frameset
    > but before i try on that, i like to achive this on flash
    > any idea ..anyone?
    >
    > thanks in adv.
    >
    MY SNIPPETS :: good luke

    function load_data() {
    var sendalo = new LoadVars();
    var receptilo = new LoadVars();
    //
    receptilo.path = this; // <-this movieclip
    receptilo.onLoad = function()
    {
    // do somthing
    };
    sendalo.sendAndLoad("./gestionale/data_sources_for_flash/select_news_en.php",
    ricevilo, "POST");
    }


    bitsurs 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