bakelentil Posted July 20, 2016 Share Posted July 20, 2016 Hi there, I wonder if anyone can please help with a problem with a for next loop? I'm basically using Send inside a For Next loop to to send a page number to a field in a Chrome window displaying an electronic book, like this: For $page = $startpage to $stoppage _WinWaitActivate("TITLE OF CHROME PAGE") Send("{"& $page &"}") Sleep (1000) Send("{ENTER}") Next This works fine but when the $page loop variable goes from 1 - 9 but when it gets to 10 it enters 1 again instead of 10. It cuts off the second digit. What am I doing wrong? Thanks in anticipation for any help. Link to comment Share on other sites More sharing options...
kcvinu Posted July 20, 2016 Share Posted July 20, 2016 For $page = $startpage to $stoppage _WinWaitActivate("TITLE OF CHROME PAGE") Send("{"& $page &"}") Sleep (1000) Send("{ENTER}") Next Post code like this. Spoiler My Contributions Glance GUI Library - A gui library based on Windows api functions. Written in Nim programming language. UDF Link Viewer --- A tool to visit the links of some most important UDFs Includer_2 ----- A tool to type the #include statement automatically Digits To Date ----- date from 3 integer values PrintList ----- prints arrays into console for testing. Alert ------ An alternative for MsgBox MousePosition ------- A simple tooltip display of mouse position GRM Helper -------- A littile tool to help writing code with GUIRegisterMsg function Access_UDF -------- An UDF for working with access database files. (.*accdb only) Link to comment Share on other sites More sharing options...
l3ill Posted July 20, 2016 Share Posted July 20, 2016 Looks like something is missing, what is producing the. $startpage to $stoppage This code looks fine to me, Send will send what ever $page happens to be... My Contributions... SnippetBrowser NewSciTE PathFinder Text File Manipulation FTP Connection Tester / INI File - Read, Write, Save & Load Example Link to comment Share on other sites More sharing options...
mikell Posted July 20, 2016 Share Posted July 20, 2016 Did you try without braces, i.e. Send($page) ? Link to comment Share on other sites More sharing options...
l3ill Posted July 20, 2016 Share Posted July 20, 2016 If you only need to count through try this idea For $page = 1 To 15 ;~ _WinWaitActivate("TITLE OF CHROME PAGE") ;~ Send("{"& $page &"}") ConsoleWrite("$page = " & "{" & $page & "}" & @CRLF) Sleep(1000) ;~ Send("{ENTER}") Next My Contributions... SnippetBrowser NewSciTE PathFinder Text File Manipulation FTP Connection Tester / INI File - Read, Write, Save & Load Example Link to comment Share on other sites More sharing options...
BrewManNH Posted July 20, 2016 Share Posted July 20, 2016 Have you tried the Send without the braces? They're not needed if you're just sending a string, they're only needed when sending a special key/character. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
mikell Posted July 20, 2016 Share Posted July 20, 2016 Link to comment Share on other sites More sharing options...
BrewManNH Posted July 20, 2016 Share Posted July 20, 2016 Whoops crossing paths there. mikell 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator 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