Hasher Posted February 11, 2007 Posted February 11, 2007 Is it possile to tell when a user pushes a submit button or navigates away from a webpage ?? Got the rest of my little app going but I am stumped on this , can someone point me in the right direction..... Thanks in advance :-) Firefox's secret is the same as Jessica Simpson's: its effortless, glamorous style is the result of shhh extensions!
Hello Me You Posted February 11, 2007 Posted February 11, 2007 (edited) yes (i think): you set the script to read the address bar. then say if the text in the address bar change, a msgbox appears and show warning. am i helpful? Edited February 11, 2007 by Hello Me You Random
Moderators big_daddy Posted February 11, 2007 Moderators Posted February 11, 2007 The most fail safe way would be to use events. For the submit button you could use onclick, and for the navigation you could use onunload.DHTML Events
Hasher Posted February 11, 2007 Author Posted February 11, 2007 Thanks Big_Daddy ,Yes I have seen these events but is it possible to attach to them with autoit ? Firefox's secret is the same as Jessica Simpson's: its effortless, glamorous style is the result of shhh extensions!
DaleHohm Posted February 11, 2007 Posted February 11, 2007 If you're using IE.au3 (and $oIE is your browser object variable) it is as easy as this: $oEvent = ObjEvent($oIE, "IEEvent_") ; Func IEEvent_onbeforeunload() ; your code EndFunc Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
Hasher Posted February 12, 2007 Author Posted February 12, 2007 Thanks once again Dale :-) Love the gorilla picture btw :_) Firefox's secret is the same as Jessica Simpson's: its effortless, glamorous style is the result of shhh extensions!
FreeFry Posted February 12, 2007 Posted February 12, 2007 (edited) If you're using IE.au3 (and $oIE is your browser object variable) it is as easy as this: $oEvent = ObjEvent($oIE, "IEEvent_") ; Func IEEvent_onbeforeunload() ; your code EndFunc Dale I tried that, and doesn't work for me, so (as I said in Hashers other thread) I assume that the Event handler, cant catch thoose(as they're javascript(?)). Edit: Link to other thread: http://www.autoitscript.com/forum/index.ph...id=305513&# Edited February 12, 2007 by FreeFry
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now