topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday November 27, 2025, 5:02 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 167 168 169 170 171 [172] 173 174 175 176 177 ... 222next
4276
Finished Programs / Re: DONE: Toggle mouse acceleration with a simple program
« Last post by skwire on April 30, 2010, 09:07 AM »
would it be asking too much if the user could pick their own cursors to use.

I actually don't use this app myself but, yes, I plan to have this configurable on MAT's command-line since there is no real GUI to speak of. 
4277
Finished Programs / Re: DONE: Toggle mouse acceleration with a simple program
« Last post by skwire on April 30, 2010, 07:48 AM »
i'd be very happy to edit/design some cursors to include - if this is possible.

Yes, this can be done so feel free to send me any test .ANI/.CUR files you want to use.  I like the idea of a standard cursor with small numbers the best.
4278
Finished Programs / Re: Toggle mouse cursor speed or acceleration with hotkey
« Last post by skwire on April 30, 2010, 06:54 AM »
yes, that is perfect. i've not tried it with my mouse buttons to activate it (toggle) yet but it looks like it will do it.
it also does more than i could ever have hoped for - with the extra speed control. that opens up so many more levels or control. brilliant.
(i'll let mouser know - he might like this on his system too.)

Sweet.  =]  I'm glad it'll work for you.

as usual, i've had a quick scan through the autohotkey forums and i can't decide if this is something near impossible or quite trivial.

As an aside, you'd be shocked at how little code there is in this app.
4279
General Software Discussion / Re: refresh all open browsers automatically?
« Last post by skwire on April 30, 2010, 06:52 AM »
if you don't mind, maybe i'll try and modify the browser refresh script into a little tray app - just with a menu for selecting browsers or something. it would give me something to play with and learn autohotkey.

By all means, please do.  I'm happy to help if you get stuck, too.
4280
General Software Discussion / Re: refresh all open browsers automatically?
« Last post by skwire on April 30, 2010, 06:28 AM »
excellent. it now appears to work (it got stuck a couple of times but i can't say why).
i've just changed the SendInput to F5 as Maxthon didn't want to respond (even after making sure that ctrl+R did work for it).

Who knows?   :D  That's how these scriptlets go sometimes.  You could play with the sleep value a bit to see if that helps.

perhaps this should be included on Skwire Empire - i think it's a really helpful web development util. i still don't understand why there hasn't been something like this around for years.

*shrug* Honestly, that above code  is very simple and could be set as a hotkey in your main AHK script (if you use one).  Bits like this really show off how flexible and powerful AHK is as a language.

i'll send some DC credits later - just waiting for them to go into my account first.
thanks very much for this, skwire.

You are most welcome.  Happy to help.   :)
4281
Finished Programs / Re: Toggle mouse cursor speed or acceleration with hotkey
« Last post by skwire on April 30, 2010, 05:56 AM »
Maybe my MAT (Mouse Acceleration Toggle) program will work for you? 

https://www.donation...ex.php?topic=19785.0
4282
General Software Discussion / Re: refresh all open browsers automatically?
« Last post by skwire on April 30, 2010, 04:22 AM »
Try this:

Code: AutoIt [Select]
  1. WinGet, myList, List
  2. Loop, % myList
  3. {
  4.     myID := myList%A_Index%
  5.     WinGetTitle, myTitle, % "ahk_id " . myID
  6.     WinGetClass, myClass, % "ahk_id " . myID
  7.  
  8.     If myTitle contains Firefox,Chrome,Maxthon,Opera,Internet Explorer
  9.     {
  10.         WinActivate, % "ahk_id " . myID
  11.         WinWaitActive, % "ahk_id " . myID
  12.         SendInput, {Ctrl down}r{Ctrl up}
  13.         Sleep, 250
  14.         ; ControlSend, , {Ctrl down}r{Ctrl up}, % "ahk_id " . myID
  15.         ; ControlSend, , {F5}, % "ahk_id " . myID
  16.         ; SendInput, {F5}
  17.     }
  18.     Else If myClass contains {1C03B488-D53B-4a81-97F8-754559640193} ; Safari.
  19.     {
  20.         WinActivate, % "ahk_id " . myID
  21.         WinWaitActive, % "ahk_id " . myID
  22.         SendInput, {Ctrl down}r{Ctrl up}
  23.         Sleep, 250
  24.         ; ControlSend, , {Ctrl down}r{Ctrl up}, % "ahk_id " . myID
  25.         ; ControlSend, , {F5}, % "ahk_id " . myID
  26.         ; SendInput, {F5}
  27.     }
  28. }
4283
General Software Discussion / Re: refresh all open browsers automatically?
« Last post by skwire on April 30, 2010, 03:32 AM »
would it make a difference if the process performed slower?

No, it shouldn't.

i've 3 other autohotkey scripts running at the same time - could these be challenging this browser refresh script in some way?

Nope.  However, if you don't mind, I could re-write it so that each window is focused first and then dealt with.  Is this acceptable?
4284
General Software Discussion / Re: refresh all open browsers automatically?
« Last post by skwire on April 29, 2010, 06:09 PM »
i'm using vista so maybe that's the problem.

Could be...but I don't see why that would make such a huge difference in this case.

oh, one other thing - does it matter if i have lots of non browser windows open at the same time? i should have mentioned that in the first place. sorry.

No, that shouldn't matter.  The code:

1) Scans through all open processes.
2) Gets their window title and class.
3) Matches against a few lists.
4) Sends an F5 (Ctrl-R in some cases) keystroke to the parent window.
4285
Sooo...did you have to do anything special to get it working?  Run first as administrator, perhaps?  I don't have Windows7 or a 64-bit version of anything with which to test with.
4286
General Software Discussion / Re: refresh all open browsers automatically?
« Last post by skwire on April 29, 2010, 09:34 AM »
Tested on my computer running WinXP SP2 and with the following browsers:

Firefox
Internet Explorer
Maxthon
Opera
Safari
Chrome

Code: AutoIt [Select]
  1. WinGet, myList, List
  2. Loop, % myList
  3. {
  4.     myID := myList%A_Index%
  5.     WinGetTitle, myTitle, % "ahk_id " . myID
  6.     WinGetClass, myClass, % "ahk_id " . myID
  7.  
  8.     If myTitle contains Firefox,Chrome,Maxthon ; These accept remote keysends directly.
  9.     {
  10.         ControlSend, , {F5}, % "ahk_id " . myID
  11.     }
  12.     Else If myTitle contains Opera,Internet Explorer ; These have to be focused first.
  13.     {
  14.         WinActivate, % "ahk_id " . myID
  15.         ControlSend, , {Ctrl down}r{Ctrl up}, % "ahk_id " . myID
  16.     }
  17.     Else If myClass contains {1C03B488-D53B-4a81-97F8-754559640193} ; Safari.
  18.     {
  19.         WinActivate, % "ahk_id " . myID
  20.         ControlSend, , {F5}, % "ahk_id " . myID
  21.     }
  22. }
4287
General Software Discussion / Re: refresh all open browsers automatically?
« Last post by skwire on April 29, 2010, 09:13 AM »
This wouldn't take much in AHK.  Give me a minute.
4288
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on April 28, 2010, 03:30 AM »
v1.0.4 build 28 - 2010-04-28
    + Added an option to disable album art display.  (Thanks, panzer)
    ! Leading spaces were erroneously stripped from all formatting strings.  (Thanks, tanis424)
4289
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on April 27, 2010, 11:11 PM »
Could you make an option to disable that album cover pic thing? I do not want to look at words No cover. Sometimes I have some pics in the folder with songs, so Trout uses one of them and shows it like it is a album cover pic, but it is not and it does not have anything to do with a song.

Apologies for the late reply.  Sure, I can add an option to disable the album art.  I've also been meaning to add an option that will allow the user to specify a "no cover" image of their own.

Great player, by the way.

Thanks, I appreciate it.
4290
I was wondering if for multiple files selected is possible to have for the first option "move all the files into a subfolder named:" a list of the names taken from the files and the default name would be the one chose with the right click?

This is an interesting idea that I'm hesitant to implement because of a potentially high number of selected files.  For example, if a user had thousands of files selected, this would cause a rather noticeable delay for your list to be populated.  Does that make sense?

Once again, thank u for a wonderful app!

You're welcome.  I'm glad you're finding it useful.
4291
You should be able to use vixay's exe for what you want to do on the commandline like this:

makeTreeZip.exe target-zip-file.zip mydir1 mydir2

Let us know how that works out for you.
4292
Finished Programs / Re: Pass a MMM-YY date to a form using AHK
« Last post by skwire on April 22, 2010, 03:34 PM »
I assume by MMM-YY, you mean something like 'Apr-10'.  If so, here you go:

Code: AutoIt [Select]
  1. FormatTime, myDate, % A_Now, MMM-yy
  2. MsgBox, % myDate
4293
General Software Discussion / Re: Advice on keyboard shortcuts.
« Last post by skwire on April 21, 2010, 06:29 AM »
In a nutshell, it will be the best five megs your computer ever uses.
4294
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on April 21, 2010, 06:26 AM »
Looks like it's working again.
4295
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on April 21, 2010, 02:40 AM »
Ok, just for the heck of it I unchecked that option and rechecked it and it's working fine now...but now last.fm isn't working. It can't login. I don't know if it's a trout issue or a last.fm issue, though. I'll try again later to see if it works.

At this point, I think it's a last.fm issue.
4296
Post New Requests Here / Re: IDEA: App to hide certain file extensions
« Last post by skwire on April 20, 2010, 04:36 PM »
Thanks for your help =] I'm afraid that I'm a n00b when it comes to this.
-HeldInAbeyance (April 20, 2010, 01:43 PM)

You're welcome.  Were you able to make it work from my post above?
4297
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on April 20, 2010, 09:58 AM »
@tanis424:  Thanks, I'll look into it.

@app103: Seems to work here for me.  Is internet access enabled under the options?  Anybody else having this issue?
4299
Skrommel's Software / Re: CAPshift enhancement suggestion
« Last post by skwire on April 17, 2010, 06:00 PM »
I'm testing on XP SP3.  Maybe the problem is related to the difference in the operating system?

I doubt it; ewemoa reported that it works fine for him under XP SP3.   :huh:
4300
Skrommel's Software / Re: CAPshift enhancement suggestion
« Last post by skwire on April 17, 2010, 07:02 AM »
I assumed you were the original author of this program.  All I can say is that it's still not working properly for me.  Your description above is correct.  Try it yourself.

It works for me under XP SP2.  As a test, I set the menu delay for two seconds and the enable delay for one second.  Holding down the caps lock key for two seconds brings up the menu whilst releasing the caps lock key within the last second toggles the caps lock key.  Anybody else using CAPshift care to test this?
Pages: prev1 ... 167 168 169 170 171 [172] 173 174 175 176 177 ... 222next