sambalec Posted March 31, 2009 Share Posted March 31, 2009 Hi ! How can I use _FFFormSubmit function in the new FF.au3 version to submit forms ? Thanks Link to comment Share on other sites More sharing options...
Stilgar Posted March 31, 2009 Share Posted March 31, 2009 (edited) Hi,if you have only one form then e.g:#include <FF.au3> _FFConnect() If _FFIsConnected() Then _FFOpenURL("www.google.de") _FFSetValueByName("q","autoit") _FFFormSubmit() EndIfotherwise like in the other versions (without the socket-parameter):_FFFormSubmit Edited April 1, 2009 by Stilgar jEdit4AutoIt PlanMaker_UDF Link to comment Share on other sites More sharing options...
sambalec Posted April 1, 2009 Author Share Posted April 1, 2009 Thank's ! How can I click on a link with FF.au3 when the link is variable (crypted)... but the link's picture is static ( the same ) ? Possible ?For exemple my link is : http://www.myweb.com/SDfz3fc365aZd56.ident1/new and the picture of this link is : http://www.myweb.com/exemple.jpgAn idea ? Ps : Sorry, my english isn't very good... Link to comment Share on other sites More sharing options...
Authenticity Posted April 1, 2009 Share Posted April 1, 2009 #include <FF.au3> _FFConnect() _FFTabAdd('http://www.autoitscript.com/') _FFClickImage('images/donate.png') _FFDisConnect() Link to comment Share on other sites More sharing options...
sambalec Posted April 1, 2009 Author Share Posted April 1, 2009 (edited) Nice ! this forum is very nice ! Thank's again ! My last question about Formsubmit, how can I choose the form ( with id or name ) in _FFFormSubmit function ? Edited April 1, 2009 by sambalec Link to comment Share on other sites More sharing options...
Stilgar Posted April 1, 2009 Share Posted April 1, 2009 Hello,_FFFormSubmit: (sorry, not complete translated now)_FFFormSubmit("FormName","name")_FFFormSubmit("FormID,"id")... jEdit4AutoIt PlanMaker_UDF Link to comment Share on other sites More sharing options...
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