| Author |
Message |
Forum: Support Topic: Ahk Web Recorder |
| sequero1 |
|
Posted: August 12th, 2011, 4:31 pm
|
|
Replies: 2 Views: 257
|
|
 |
Forum: Utilities Topic: Custom Search Engine for AHK Learners/Newbies |
| sequero1 |
|
Posted: August 3rd, 2011, 4:45 pm
|
|
Replies: 2 Views: 990
|
| Thanks, i'll try it because it's not easy to find things sometimes. |
|
 |
Forum: Support Topic: Is there a way to REALLY KNOW when a web page is loaded? |
| sequero1 |
|
Posted: July 8th, 2011, 7:05 pm
|
|
Replies: 45 Views: 5285
|
| What I do (i'm sure it can be done better) it's this double loop, first try to connect to the page, and when the page exists, read its content until it's what I know it will show when its completly loaded: pwb:=iWeb_getwin("the name of the page") ;first loop, tries for 30 second if... |
|
 |
Forum: Support Topic: select object on page by id |
| sequero1 |
|
Posted: June 15th, 2011, 9:53 pm
|
|
Replies: 1 Views: 91
|
| I use iWeb library to work with webpages, so you need to include the library first, then start it, and then conect to the page and then select the link, something like this (it works with internet explorer): #include iWeb.ahk ;the library you need #include COM.ahk ;this shoul be in autohotkey direct... |
|
 |
Forum: Support Topic: Detecting if a game is open and executing a loop |
| sequero1 |
|
Posted: June 15th, 2011, 9:45 pm
|
|
Replies: 1 Views: 113
|
| Try #IfWinActive insted of ifwinactive, and #ifwinNotActive |
|
 |
Forum: Support Topic: SQLite in AHK? |
| sequero1 |
|
Posted: May 7th, 2011, 10:04 pm
|
|
Replies: 1 Views: 287
|
Use de library sqlite.ahk
#include SQlite.ahk
SQLite_Startup()
database := SQLite_OpenDB("nameofthefile.sqlite")
errorCheck := SQLite_GetTable(database, "SELECT * FROM tbl1 where nom = 'miguel'", rows, columns, name, result )
msgbox %result% |
|
 |
Forum: Support Topic: how to Hide and show a gui control (beginner) |
| sequero1 |
|
Posted: August 15th, 2010, 12:00 pm
|
|
Replies: 4 Views: 598
|
| In my script I've got 20 gui controls, and I want to show or hide some of them, right now i'm using two different subroutines, one to hide the controls, and one to hide them, it seems to me i'm working double! Example: HideControls: GuiControl, Hide, BaseRegul_a GuiControl, Hide, GrupoCotiz_a Return... |
|
 |
Forum: Scripts Topic: :: SmartGUI Creator :: |
| sequero1 |
|
Posted: August 8th, 2010, 11:49 am
|
|
Replies: 815 Views: 319173
|
| Just to say thanks, I use this tool and it's really great! |
|
 |
Forum: Support Topic: Change the value of an edit control when user writes smthng |
| sequero1 |
|
Posted: July 8th, 2010, 9:55 pm
|
|
Replies: 8 Views: 302
|
Glabel, That's somenthing I would use a lot in what I'm trying to do.
It's easier when you actually read the manuals and docs and understand them, than doing things using trial and error system...my mistake.
You know that phrase: God, give me patience, but now!
Thanks again! |
|
 |
Forum: Support Topic: Change the value of an edit control when user writes smthng |
| sequero1 |
|
Posted: July 8th, 2010, 8:46 pm
|
|
Replies: 8 Views: 302
|
| Piece of cake for you, something difficult for a newbie like me ;) This is what I wanted to do and it works now, just a conditional value of an edit control that changes according to the input of another edit, in real time. gChanged was the key!, but it's not in the Gui help, ( http://www.autohotkey... |
|
 |
Forum: Support Topic: Change the value of an edit control when user writes smthng |
| sequero1 |
|
Posted: July 8th, 2010, 4:03 pm
|
|
Replies: 8 Views: 302
|
| First of all thanks and sorry if this is already in the forum, i've searched and found nothing Lets asume i have a Gui with 2 edit controls, My goal is to change the value of edit 2 when the user writes something in edit 1 if %edit1% something %edit2% = another thing But without using a button I don... |
|
 |
| Sort by: |