AutoHotkey Community

It is currently May 21st, 2012, 5:22 pm

All times are UTC [ DST ]


Search found 186 matches
Search these results:

Author Message

 Forum: Support   Topic: FTP and AHK

 Post subject: Re: FTP and AHK
Posted: April 13th, 2012, 4:30 pm 

Replies: 2
Views: 106


I've found that some hosts will not allow FTP to be (pushed / put) etc. Google search for cURL.

It's fast, easy, & works great!

 Forum: Support   Topic: Assistance clicking SUBMIT button via COM.

Posted: April 12th, 2012, 5:26 pm 

Replies: 20
Views: 343


I keep forgetting about iWB2! haha

Thanks jethrow!

 Forum: Support   Topic: Can AHK 'see' a number, change it and replace it?

Posted: April 12th, 2012, 3:58 am 

Replies: 1
Views: 74


Yes ahk can see the number. Please read the tutorial & gain a basic understanding then build from there. http://www.autohotkey.com/docs/Tutorial.htm Do a search for the next few items within the help file included in ahk. You'll basically want to see "IfWinExist", if it does then "...

 Forum: Support   Topic: Assistance clicking SUBMIT button via COM.

Posted: April 11th, 2012, 10:50 pm 

Replies: 20
Views: 343


Yw! Glad to help!

 Forum: Support   Topic: Assistance clicking SUBMIT button via COM.

Posted: April 11th, 2012, 10:19 pm 

Replies: 20
Views: 343


#SingleInstance Force onexit, exitsub pwb := ComObjCreate("InternetExplorer.Application") pwb.Visible := true ; show IE pwb.Navigate("http://www.dell.com/support/drivers/us/en/04/DriversHome/NeedProductSelection") while pwb.ReadyState <> 4 continue Tag := "72759" ;chan...

 Forum: Support   Topic: Word Definition

 Post subject: Re: Word Definition
Posted: April 11th, 2012, 8:48 pm 

Replies: 6
Views: 111


#SingleInstance Force onexit, exitsub InputBox, word, Definition Needed, Please enter word to define, , pwb := ComObjCreate("InternetExplorer.Application") URL := "http://dictionary.reference.com/browse/" . word ;Note: If you want to use Urban Dictionary as you previously stated...

 Forum: Support   Topic: right mouse button click

Posted: September 12th, 2011, 4:09 pm 

Replies: 2
Views: 134


Code:
RButton::msgbox, Yay! I clicked the right-mouse-button.`n`nBTW, read the manual.

 Forum: Support   Topic: Copy text

Posted: July 26th, 2011, 2:42 pm 

Replies: 23
Views: 906


Should get any value within your vague string description.

Code:
string = Berlios you got a "100 Points"
StringSplit, var, string, "
StringSplit, n00b, var2, %A_Space%
msgbox % n00b1

 Forum: Support   Topic: middle mouse button

Posted: April 28th, 2011, 5:02 pm 

Replies: 10
Views: 369


Code:
;start slow & understand what you're using & trying to accomplish
~MButton::msgbox, It works!

 Forum: Support   Topic: check & show NTFS permission with AHK

Posted: April 15th, 2011, 4:47 pm 

Replies: 3
Views: 180


You're welcome. Glad to help!

 Forum: Support   Topic: Login remote computer, not log into remote computer.

Posted: April 14th, 2011, 4:06 pm 

Replies: 6
Views: 247


Like This?

It's not tough. Little regedit & some input.

HTH's

 Forum: Support   Topic: check & show NTFS permission with AHK

Posted: April 14th, 2011, 3:45 pm 

Replies: 3
Views: 180


;Allows user to select a folder then checks attributes FileSelectFolder, OutputVar, , 0 if OutputVar = MsgBox, You didn't select a folder. else { RunWait %Comspec% /c "cacls `"%OutputVar%`" >attribute.txt",, Hide FileRead attributes,attribute.txt FileDelete attribute.txt Ms...

 Forum: Support   Topic: Auto Convert system time to another timezone

Posted: April 13th, 2011, 11:38 pm 

Replies: 10
Views: 298


I fear quitting sinkfaze :wink:

 Forum: Support   Topic: Login remote computer, not log into remote computer.

Posted: April 13th, 2011, 8:51 pm 

Replies: 6
Views: 247


What OS?
Is it on a Domain?
...

 Forum: Support   Topic: Auto Convert system time to another timezone

Posted: April 13th, 2011, 7:15 pm 

Replies: 10
Views: 298


Okay... I guess that is easier. :P
Sort by:  
Page 1 of 13 [ Search found 186 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group