It works seamlessly on the desktop but once I compile it and run it as a revlet on any browser, all it does is show an empty answer box w/c I think means that it didn't access the internet. Area there any info as to how to get around this? Thank you for your kind answers!
On the Web tab in the standalone application settings, you will find a few checkboxes under the header "Secutiry Settings". I think you need to check the Network box.
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
On the Web tab in the standalone application settings, you will find a few checkboxes under the header "Secutiry Settings". I think you need to check the Network box.
Best,
Mark
I actually already tried checking all of the options out of desperation. xD
But that didn't help either, it still can't seem to connect to the internet.. =/
Have you tried a different URL? Try your own website, double-check that the data is actually sent by your server.
Have you tried displaying a simple message in the answer dailog? Try "Hello World".
Are you sure that you have downloaded and installed the most recent version of the web plugin?
You can try to check the result after getting the URL:
Don't use an answer dialog for this test. What do you get?
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Have you tried a different URL? Try your own website, double-check that the data is actually sent by your server.
Have you tried displaying a simple message in the answer dailog? Try "Hello World".
Are you sure that you have downloaded and installed the most recent version of the web plugin?
You can try to check the result after getting the URL:
Don't use an answer dialog for this test. What do you get?
Best,
Mark
I tried that, answer dialog works fine with some few tests, nothing happened on the first button click to fetch the URL, a second click following the first one after 10 minutes of waiting returned the result "error Previous request not completed". It somehow just doesn't seem to connect or is being blocked. I tried a desktop compile and it ran smoothly without error. I also asked another friend of mine to try it out on his own machine and it returned the same end-result. I'm pretty sure proxy isn't setup as I checked all browsers and default system configuration for proxies. At first I thought that the proxy was causing trouble like my last problem but no it seems it's not. I can post a video recording of me attempting to try out the stack on Firefox with the latest RevWeb plugin. I'm pretty sure I've got the latest one because they haven't updated the revweb plugin in ages. I even re-checked the revweb website just to make sure. I can also post the source file of the revlet. Tell me if you need any more detail for this problem.
Actually, with this kind of problems, you should always report your operating system...
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Did you quit and retart Revolution already? I guess you have, but I want to know for sure. You might want to try removing all custom plug-ins and make sure that you have a pristine copy of RunRev.
Could you post your entire mouseUp handler, containing aforementioned simple test?
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Could you contact me via the support@runrev.com email address? We are looking for a case study for our new website of younger persons using Rev and you would be ideal if you were willing to participate - let me know asap!
I did a test. My test showed that the put URL command works fine in a revlet on Windows XP. If you need more help, then you should post a complete script to demonstrate the problem.
AndyP, if you look at security section on the Web tab of the standalone settings window, you should get at least some idea of what is supported.
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
on mouseUp
put empty into fld 1
put url "http://www.google.com" into myData
put the result & cr & cr & myData into fld 1
end mouseUp
It just proves that it works. I used Rev 4.0 for this test, afaik it works fine with 4.5 as well. I believe you'd better post your script.
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode