Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
nkaf #1
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
-
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... -
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... -
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 ... -
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... -
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... -
bitsurs #2
Re: query string
nkaf ha scritto:
MY SNIPPETS :: good luke> 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.
>
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



Reply With Quote

