| Author |
Message |
Forum: Support Topic: Mark files in FileZilla |
| Dannymet |
|
Posted: October 28th, 2009, 4:00 pm
|
|
Replies: 2 Views: 283
|
Code: Sendmode, Input Loop { Send, {CTRLDOWN}{DOWN}{DOWN}{SPACE}{CTRLUP} }
Esc:: Exitapp
??
I would suggest putting Loop 10 { so it only loops 10 times, to test it before you begin?
Enjoy |
|
 |
Forum: Support Topic: seperate variable into multiple variables |
| Dannymet |
|
Posted: September 10th, 2009, 12:49 pm
|
|
Replies: 1 Views: 90
|
| Hello, I have a long variable / string I wish to seperate this variable. The variable goes like this: var = Hello%A_Tab%My%A_Tab%Name%A_Tab%Is%A_Tab%Daniel (words seperated by tabs) I wish for this to be manipulated into: var-A = Hello var-B = My var-C = Name etc etc... I'm seperating a text tab del... |
|
 |
Forum: Support Topic: Can't click a button... :S |
| Dannymet |
|
Posted: September 1st, 2009, 3:36 pm
|
|
Replies: 9 Views: 459
|
| try: Loop { WinWaitActive, ZoneAlarm Security Alert { Sleep, 5000 IfWinNotActive, ZoneAlarm Security Alert, , WinActivate, ZoneAlarm Security Alert, Mouseclick, Left, x, y } } where x & y are the coordinates of the button to be pushed Use AutoScriptWriter II to get the coordi... |
|
 |
Forum: Support Topic: getting a common error messge for downloaded scripts |
| Dannymet |
|
Posted: August 19th, 2009, 3:55 pm
|
|
Replies: 3 Views: 251
|
I use Notepad (shipped with windows) for quick changes, and Notepad++ for a fullon script creation or editing.
I have never had any problems |
|
 |
Forum: Support Topic: RegWrite on vista? |
| Dannymet |
|
Posted: August 19th, 2009, 1:36 pm
|
|
Replies: 4 Views: 287
|
| it doesnt even write to Wow6432Node though :/ |
|
 |
Forum: Support Topic: RegWrite on vista? |
| Dannymet |
|
Posted: August 19th, 2009, 1:26 pm
|
|
Replies: 4 Views: 287
|
| I'm sure that it didnt work on my sisters laptop either though. hers is vista home premium 32 bit :/ |
|
 |
Forum: Support Topic: RegWrite on vista? |
| Dannymet |
|
Posted: August 19th, 2009, 9:26 am
|
|
Replies: 4 Views: 287
|
| RegWrite doesnt work in vista for me, even if i run as administrator I tested using the example from http://www.autohotkey.com/docs/commands/RegWrite.htm : RegWrite, REG_SZ, HKEY_LOCAL_MACHINE, SOFTWARE\TestKey, MyValueName, Test Value This works fine on my XP machines, but not my 64 bit Vista Ultim... |
|
 |
Forum: Support Topic: Using the if command with OR |
| Dannymet |
|
Posted: August 18th, 2009, 4:20 pm
|
|
Replies: 1 Views: 1833
|
| I have been using AutoHotKey for a logn time, using the basic functions with variables. I'm not sure how to grasp the OR bit of it though eg: FormatTime, Time,, HH:mm if (Time = 16:10) OR (Time = 16:11) OR (Time = 16:12) OR (Time = 16:13) OR (Time = 16:14) OR ... |
|
 |
Forum: Scripts Topic: USB Detection! |
| Dannymet |
|
Posted: August 3rd, 2009, 1:59 pm
|
|
Replies: 17 Views: 4583
|
| Thank you guys for alerting me about the Z drive thing. My tests don't reveal that. I wonder why it's happening, as I tried not to change Dannymet's logic too much. I'll check my script later. @Dannymet You can use my Loop instead of ALL those StringLeft/StringRight: Loop, 26 { dr1%A_Index% :=... |
|
 |
Forum: Support Topic: FTP Folder Upload |
| Dannymet |
|
Posted: July 31st, 2009, 11:07 am
|
|
Replies: 3 Views: 843
|
| You didnt explain how to do it properly! i have this: #NoEnv Server = 127.0.0.1 Port = 21 User = anonymous Pwd = anonymous LocalFile = c:\folder Directory1 = "/1/" Directory2 = "/1/" ; Check that the redirection file actually exists before we try to upload it IfNotExist, %LocalFi... |
|
 |
Forum: Scripts Topic: USB Detection! |
| Dannymet |
|
Posted: July 31st, 2009, 10:34 am
|
|
Replies: 17 Views: 4583
|
MasterFocus: I get the strange Z Drive too with your script
HotKeyIt: Awesome script! fairly long but its sexy. Love the tooltip.
I still like mine too though  |
|
 |
Forum: Scripts Topic: USB Detection! |
| Dannymet |
|
Posted: July 30th, 2009, 2:09 pm
|
|
Replies: 17 Views: 4583
|
| A little script i spend a couple of hours making! It detects when a USB is inserted. stores the drive letter in a variable and the space free (in MB) in a variable too then reports it all via a message box #Noenv #Persistent Start: { DriveGET, Drives, List, Sleep, 500 DriveGET, Drives1, List, I... |
|
 |
Forum: Support Topic: Cancel Loop if GUI Button is pressed |
| Dannymet |
|
Posted: March 14th, 2009, 12:58 am
|
|
Replies: 6 Views: 668
|
| Thanks a lot guys. U fixed it Gui 2: Add, Text,x10 y10, Click Exit to close Gui 2: Add, Button, x10 y40 g2ButtonExit, Exit Gui 2: Show, autosize x10 y10, AutoTyper Gui 2: +Alwaysontop Sleep, 2000 Loop { Send Hi{enter} Sleep, -1 } 2ButtonExit: ExitApp 2GuiClose: ExitApp Works fine... |
|
 |
Forum: Support Topic: Cancel Loop if GUI Button is pressed |
| Dannymet |
|
Posted: March 14th, 2009, 12:04 am
|
|
Replies: 6 Views: 668
|
I dont know where you got that from. It doesnt work anyway
Open the application, open notepad, and wait till the loop has started
Then press exit and it doesnt do anything
Im semi-decent at autohotkey and I've been using it for 6 months but this is my first attempt at GUIs |
|
 |
Forum: Support Topic: Cancel Loop if GUI Button is pressed |
| Dannymet |
|
Posted: March 13th, 2009, 7:21 pm
|
|
Replies: 6 Views: 668
|
| Gui 2: Add, Text,x10 y10, Click Exit to close Gui 2: Add, Button, x10 y40, Exit Gui 2: Show, autosize x10 y10, AutoTyper Gui 2: +Alwaysontop Sleep, 5000 Loop { Send Hi{enter} } 2ButtonExit: ExitApp 2GuiClose: ExitApp I cant get it to exitapp when the exit button is pressed or th... |
|
 |
| Sort by: |