RE: Way to determine if button is pressed in browser

2003-01-27 Thread Gary Rathbone
You could use sockets in Rev to 'listen' to requests on say port 81. In the page the Javascript could refer to 127.0.0.1:81 which is port 81 on the local machine. Rev could then parse any arguments and act accordingly. I've done it this way for a couple of projects and it works fine. Regards Gary

Re: Way to determine if button is pressed in browser

2003-01-27 Thread Scott Rossi
Recently, Gary Rathbone wrote: I've been asked to see if it's possible to write a Revolution app that reacts when a button in pressed on a web-page within Internet Explorer. This Rev app would be running the same time that Internet Explorer is running and would just be sniffing the browser

Re: Way to determine if button is pressed in browser

2003-01-27 Thread Ken Ray
Well, if you set up Rev as a CGI on a server, the web page could tell the CGI that a button was pressed. If a local Rev app needed to know, it could be polling a particular spot on the server for the existence of a file, and the CGI could write that file. You'd get a delay between the click on the

Re: Way to determine if button is pressed in browser

2003-01-27 Thread Ken Ray
I've been asked to see if it's possible to write a Revolution app that reacts when a button in pressed on a web-page within Internet Explorer. This Rev app would be running the same time that Internet Explorer is running and would just be sniffing the browser to see if the user pressed a

RE: Way to determine if button is pressed in browser

2003-01-27 Thread Gary Rathbone
Ok, I've stripped out my 'extra' bits for simplicity, so here goes... I've got a stack with a single button 'Start' and a field 'tfld'. In the start button the script is... on mouseup put into fld tfld --kill any existing sockets (can be

RE: Way to determine if button is pressed in browser

2003-01-27 Thread Chipp Walters
We've a browser control (altBrowser.dll) which is embedded into RR as an object. It can do what you're looking for. Only problem is, it only works with RR2.0 and the latest MC engine. It can be instatiated to run either IE or Mozilla and of course control all aspects of the browser. Tuviah wrote

RE: Way to determine if button is pressed in browser

2003-01-27 Thread Dave LeYanna
Thanks for your generous help. djl At 10:52 PM 1/27/03 +, you wrote: Ok, I've stripped out my 'extra' bits for simplicity, so here goes... I've got a stack with a single button 'Start' and a field 'tfld'. In the start button the script is...

RE: Way to determine if button is pressed in browser

2003-01-27 Thread Monte Goulding
I have to say WOW and WOW to the last two posts on this thread. I believe the golden age of third party Rev tools is now upon us! Fasten your seatbelts everyone ;-) Monte ___ use-revolution mailing list [EMAIL PROTECTED]

RE: Way to determine if button is pressed in browser

2003-01-27 Thread Tuviah M Snyder
Tuviah wrote most the code, and we added a bit here and there. I built a skinnable RR app around it LEO as well, which acts like a browser. Chipp this made my day:-) It's great to see what you've done with it! Let's hope that Apple comes out with a descent SDK for Safari. Tuviah Snyder [EMAIL