Skip to main content
Inspiring
October 11, 2006
Question

getURL and GET method

  • October 11, 2006
  • 9 replies
  • 514 views
Hi,

when I execute a getURL from Flash the webpage with it's GET parameters
is opened right. But when I try to do this form the movie in a local
webpage the GET parameters are lost somewhere. Are there any securety
restrictions to the getURL command?

TIA
This topic has been closed for replies.

9 replies

Inspiring
October 12, 2006
friendDips wrote:
> I have run it on localhost.

It occurs local with a file path and Flash plugin version 8.
Participating Frequently
October 12, 2006
I have run it on localhost.
Inspiring
October 12, 2006
ggshow wrote:
> "GET" for the method, when run on local pc, can't see the query string behind address, anybody else here face the same prob? or anyone know what mistake we did?

I guess that it is a Flash securety thing. It would prevent to send
local data to a webserver.

I found this thread an flashkit with similar problems:

http://board.flashkit.com/board/showthread.php?t=652586
Inspiring
October 12, 2006
friendDips wrote:
> I tried the same code. It is working perfectly fine..

Have you run it in a browser or in Flash IDE?
Participating Frequently
October 12, 2006
"GET" for the method, when run on local pc, can't see the query string behind address, anybody else here face the same prob? or anyone know what mistake we did?
Participating Frequently
October 12, 2006
I tried the same code. It is working perfectly fine..
Participating Frequently
October 12, 2006
i have the same problem
Inspiring
October 11, 2006
AnandMX wrote:
> kindly share the code

createEmptyMovieClip("get_mc",this.getNextHighestDepth())

for (n in _level0.data){
t = _global.template.type
if (_level0.data != undefined && t != undefined && t != "save" &&
_global.template.noedit != "1" ){
p = n + "=" + escape(_level0.data);
get_mc = _level0.data;
}
}
url = "editor.html";
get_mc.getURL(url,"_blank","GET");


editor.html ist just opening the same movie but at least local from my
harddisk the GET Method doesn't seem to work anymore.
Inspiring
October 11, 2006
kindly share the code