furanku Posted April 7, 2008 Posted April 7, 2008 How do I get Autoit to write the script for me on it's own as I do the task I want it to do on it's own? Can I use the script in a webpage?
d4rk Posted April 7, 2008 Posted April 7, 2008 1. No, you have to write the script and autoIT will do it for you 2. Yes, with IE.au3, you can use the script with webpage [quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys
junkew Posted April 7, 2008 Posted April 7, 2008 Do a full install with Scite installer. Within the Scite menu you will have 2 different types of "recorders" that will help you out with basic recording of autoit script. FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
furanku Posted April 9, 2008 Author Posted April 9, 2008 (edited) Do a full install with Scite installer.Within the Scite menu you will have 2 different types of "recorders" that will help you out with basic recording of autoit script.Where do I find the recorders I have SciTE and can't get started. Edited April 9, 2008 by furanku
junkew Posted April 9, 2008 Posted April 9, 2008 Full installhttp://www.autoitscript.com/autoit3/scite/downloads.shtmlhttp://www.autoitscript.com/cgi-bin/getfil...iTE4AutoIt3.exeMake an empty script and save it with extension .AU3 then you should be able to find in the menu FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
furanku Posted April 9, 2008 Author Posted April 9, 2008 How do you run the script as an js file? Is there a wildcard character in AutoIt? I've got it running Ctrl+D but I want it to work on any webpage in firefox
d4rk Posted April 10, 2008 Posted April 10, 2008 How do you run the script as an js file? Is there a wildcard character in AutoIt? I've got it running Ctrl+D but I want it to work on any webpage in firefox1. JS work in Webpage <script src='something.js'></script> so you can't run autoIT as js file 2.yes, there is , try : Filedelete("C:\*.{extension}") 3.first of all , i thought you should get the focus of the window then send Ctrl + D [quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys
furanku Posted April 11, 2008 Author Posted April 11, 2008 3.first of all , i thought you should get the focus of the window then send Ctrl + DHow would you do this please?
Squirrely1 Posted April 11, 2008 Posted April 11, 2008 (edited) Opt("WinTitleMatchMode", 4) $HWnd = GUICreate("Squirrely Business") GUISetState() WinActivate("Squirrely Business"); you can use $HWnd of the target window in place of "the title" Send("^d"); sends Ctrl-D You can use the Window Info tool to get the title of the window: Start button > All Programs > AutoIt v3 > AutoIt Window Info Edited April 11, 2008 by Squirrely1 Das Häschen benutzt Radar
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