Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the format for such an invocation?For eg if I have file Test.html in the same directory as the applicaion and using platformRequest, how do I invoke this file in a browser?

share|improve this question

2 Answers

The correct function would be platformRequest(file:///path/to/Test.html);

BUT, and this is a big but, platformRequest by standard only has to support http:// (for .jad/.jar retrieval) and tel: strings. So, if you try and open a local file, it all depends on the device and if the manufacturer supports this string (file:) for platformRequest

share|improve this answer

You can use the following example:

platformRequest("http://www.cocacola.com");
share|improve this answer

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.