Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am encountering a very stragne bug, i am trying to call javascript from AIR like this

this.webView.loadURL( 'javascript:alert(5)' ); -- This works

this.webView.loadURL( 'javascript:alert("hello there")' ); -- This is not working

I am not able to pass strings, in any function. I am not sure why this is happening and it is driving me insane. It works correctly in Android though.

Any help would be greatly appreciated. Thanks

EDIT: after spending sometime tweaking it seems to be the space. alert("hello") works fine alert("hello there") doesnot.

share|improve this question

1 Answer

up vote 1 down vote accepted

Ok I think I found it.

You cannot pass whitespaces. You can in Android and Desktop - but no, the glorious iOs refuses to digest such an advanced entity.

So you must encode your whitespaces in strings and make sure that there will be no stray whitespace in your functiond declration

for example

this.webView.loadURL("javascript:test('hey__there')"); //will work

while

this.webView.loadURL("javascript: test('hey__there')"); //this won't

this.webView.loadURL("javascript:test( 'hey__there' )"); //this won't

Good luck

share|improve this answer
1  
No it is very possible to call javascript function, you just have to make sure that there are no whitespaces in the loadURL argument. Also it is possible to grab the value that a JS function returned. To do that, since there is no ExternalInterface available, you will have to... – Pantelis Sep 9 '11 at 10:05
1  
add listeners to the webView, with addEventListener( LocationChangeEvent.LOCATION_CHANGING, CALLBACK ); and LocationChangeEvent.LOCATION_CHANGE then make sure that in CALLBACK the following is true. e.type == "locationChanging" – Pantelis Sep 9 '11 at 10:07
1  
and grab the url of the webview like this unescape((e as LocationChangeEvent).location). In JS you will ahve to modify the url, (by tweaking window.location.href, the hash alone is not enough) – Pantelis Sep 9 '11 at 10:09
1  
While this will work on Android, it will fail on iOs. In order to make it work you will have to modify the "whole" url, from the protocol level ( window.location.href = "data://" + message + "?args=" + moreData; //works fine ) – Pantelis Sep 9 '11 at 10:11
1  
I hope I was of help, I will try to write a small tutorial within the weekend – Pantelis Sep 9 '11 at 10:16
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.