AutoHotkey Community

It is currently May 24th, 2012, 8:13 am

All times are UTC [ DST ]


Search found 11 matches
Search these results:

Author Message

 Forum: Support   Topic: Ahk Web Recorder

Posted: August 12th, 2011, 4:31 pm 

Replies: 2
Views: 257


http://www.autohotkey.net/~jethrow/iWeb ... earner.zip

 Forum: Utilities   Topic: Custom Search Engine for AHK Learners/Newbies

 Post subject: Thanks.
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?

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

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

Posted: June 15th, 2011, 9:45 pm 

Replies: 1
Views: 113


Try #IfWinActive insted of ifwinactive, and #ifwinNotActive

 Forum: Support   Topic: SQLite in AHK?

 Post subject: Yes
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)

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 ::

 Post subject: Thanks
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

 Post subject: You are right!
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

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

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:  
Page 1 of 1 [ Search found 11 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group