RE: [flexcoders] passing variables using getURL?

2005-05-20 Thread Matt Horn
of that. --- HTH, Matt Horn Flex docs From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Friday, May 20, 2005 3:40 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] passing variables using getURL

Re: [flexcoders] passing variables using getURL?

2005-05-20 Thread John Dowdell
Abdul Qabiz wrote: No we don't get anything back if invoke JavaScript function using getURL(..). But you can do something similar, as described below: For what it's worth, some of the various browsers *did* return JavaScript values to plugins after receiving a javascript: pseudo-URL. I

RE: [flexcoders] passing variables using getURL?

2005-05-20 Thread Tracy Spratt
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Dowdell Sent: Friday, May 20, 2005 4:38 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] passing variables using getURL? Abdul Qabiz wrote: No we don't get anything back if invoke JavaScript function using getURL

Re: [flexcoders] passing variables using getURL?

2005-05-19 Thread John Dowdell
sbyrne_dorado wrote: I'm having problems figuring out how to pass variables using getURL. Pass info from where, to where...? jd -- John Dowdell . Macromedia Developer Support . San Francisco CA USA Weblog: http://www.macromedia.com/go/blog_jd Aggregator:

RE: [flexcoders] passing variables using getURL?

2005-05-19 Thread Abdul Qabiz
Hi, You can pass variable to external script using getURL(...), getURL(..) sends all variable declared in current scope. Infact getURL(..) sends all variable declared, that means it sends unwanted stuff also. But I think, you can use LoadVars object for such kind of work. LoadVars gives more