I am having trouble figuring out a way to get some data back from a url in adobe air. It seems that there are security restrictions in air such that doing a normal callback will not work. So something like:
$.getJSON( requestURL,
function(json)
{
$('#response').append("working");
}
);
Doesn't execute the callback. Is there some way to get around this? I did find some mention of this and a possible solution at http://css.dzone.com/news/jsonp-request-adobe-air but that doesn't seem to be working for me. I can run the code just fine in a normal browser but in air it fails to call either the dataFilter or the sucess method.