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 ... 166 167 168 169 170 [171] 172 173 174 175 176 ... 222next
4251
Post New Requests Here / Re: Need ADH Advice
« Last post by skwire on May 07, 2010, 12:29 AM »
That's a disappointment.  So there is no solution consistent with my preferences?

I could make it display a small GUI window instead of using a tooltip.  This way, you could move it out of the way, leave it open as long as necessary, and close it when you're done.  Your thoughts?
4252
Post New Requests Here / Re: Need ADH Advice
« Last post by skwire on May 06, 2010, 11:59 PM »
I'm not at my main computer right now, but I'm pretty sure that you are wrong. The little window showing the window owning program stays displayed after the program exits (as I recall).

It stayed showing because you had a second hotkey (#q::) defined in the script which made the script never exit/end.

I could live with the timeout, but I really don't prefer it. I frequently have to do a lot of stuff based on the information and I'd have to write it down.

How about displaying it while simultaneous copying the data to your clipboard?

What happened to the INI solution? I was looking forward to details.

The fact is, without some sort of delay, that type of script will start, run the code, and exit in the blink of an eye.  When it exits, it destroys any tooltip created.  
4253
Post New Requests Here / Re: Need ADH Advice
« Last post by skwire on May 06, 2010, 11:36 PM »
Actually...if you change it into an executable, the tooltip will disappear almost immediately after starting the script because the script exits immediately.  This app could be made to show the tooltip, say, for five seconds and then exit thus making the tooltip disappear on its own.  In other words:

1) Run you hotkey to start the app.
2) App displays tooltip for user-specified length of time.
3) App exits and tooltip disappears.  There would be no need to run the hotkey a second time to make the tooltip disappear.

Would that work for you?
4254
Post New Requests Here / Re: Need ADH Advice
« Last post by skwire on May 06, 2010, 11:24 PM »
I expected that using PowerPro to support the hotkey to call the simple program would behave the same as it had with the AHK hotkey.

What you want can easily be done with a simple INI settings file to save the toggle setting between application runs.  Give me a minute.
4255
Post New Requests Here / Re: IDEA: run programs first of the month
« Last post by skwire on May 06, 2010, 10:35 PM »
For something like this to work and, since you've already stated you don't want to use the built in Task Scheduler, it would have to stay running in the background.  Is that acceptable?
4256
Post New Requests Here / Re: Need ADH Advice
« Last post by skwire on May 06, 2010, 10:26 PM »
I tried to modify it to be a simple program

What was your expectation after doing this?

How did the original work wrt making the little window disappear everyother use?

It uses the "ToolTipFlag" variable as a toggle to determine whether to display the display the tooltip or cause it to disappear.
4257
Adjust the FudgeFactor variable to your liking:

Code: AutoIt [Select]
  1. Hotkey, #k,     MoveUp
  2. Hotkey, ^!+k,   MoveUp          ; * to work with programmable mouse buttons (if winkey not accepted)
  3. Hotkey, ^!+j,   MoveDown
  4. Hotkey, #j,     MoveDown        ; *
  5. Hotkey, #+j,    MoveLeft
  6. Hotkey, ^!+h,   MoveLeft        ; *
  7. Hotkey, #+k,    MoveRight
  8. Hotkey, ^!+l,   MoveRight       ; *    
  9. horizontalspeed=0                       ; 0 = fastest, 100 = slowest
  10. verticalspeed=0
  11. speedmultiplier=30                      ; cursor movement needs speeding up a bit
  12. rightscreenwidth=1920           ; width of monitor
  13. screenheight=1200                       ; height of monitor
  14. FudgeFactor=50
  15.  
  16. MoveUp:
  17. MouseGetPos, xpos, ypos
  18. loop
  19. {
  20.     MouseGetPos, xpos_,
  21.     If ( xpos_ < ( xpos - FudgeFactor ) OR ( xpos_ > ( xpos + FudgeFactor ) ) )
  22.                 Break
  23.         ypos -= speedmultiplier
  24.         MouseMove, xpos, ypos, verticalspeed
  25.     if ypos = 0
  26.                 Break
  27. }
  28.  
  29. MoveDown:
  30. MouseGetPos, xpos, ypos
  31. loop
  32. {
  33.     MouseGetPos, xpos_,
  34.     If ( xpos_ < ( xpos - FudgeFactor ) OR ( xpos_ > ( xpos + FudgeFactor ) ) )
  35.                 Break
  36.         ypos += speedmultiplier
  37.         MouseMove, xpos, ypos, verticalspeed
  38.     if ypos = %screenheight%
  39.                 Break
  40. }
  41.  
  42. MoveLeft:
  43. MouseGetPos, xpos, ypos
  44. loop
  45. {
  46.     MouseGetPos, , ypos_
  47.     If ( ypos_ < ( ypos - FudgeFactor ) OR ( ypos_ > ( ypos + FudgeFactor ) ) )
  48.                 Break
  49.         xpos -= speedmultiplier
  50.         MouseMove, xpos, ypos, horizontalspeed
  51.     if xpos = 0
  52.                 Break
  53. }
  54.  
  55. MoveRight:
  56. MouseGetPos, xpos, ypos
  57. loop
  58. {
  59.     MouseGetPos, , ypos_
  60.     If ( ypos_ < ( ypos - FudgeFactor ) OR ( ypos_ > ( ypos + FudgeFactor ) ) )
  61.                 Break
  62.         xpos += speedmultiplier
  63.         MouseMove, xpos, ypos, horizontalspeed
  64.     if xpos = %rightscreenwidth%
  65.                 Break
  66. }
4258
General Software Discussion / Re: Clipboard Managing-Which one?
« Last post by skwire on May 06, 2010, 04:53 AM »
4259
Living Room / Re: could two numeric keypads work at the same time
« Last post by skwire on May 06, 2010, 04:45 AM »
It has a switchable keypad: http://www.microsoft...b=systemRequirements

Click the Details tab if the link doesn't bring you there directly.
4260
Find And Run Robot / Re: How to use pskill with farr
« Last post by skwire on May 05, 2010, 01:46 AM »
I realise this might be a little late to add, but there is a ProcessKill plugin for FARR that works well:

http://taichi.dcmembers.com/Plugins/
https://www.donation...dex.php?topic=9111.0
4261
Living Room / Re: could two numeric keypads work at the same time
« Last post by skwire on May 04, 2010, 11:41 PM »
i've seen a company (that i can't find now) that make a large flat board with button like keys you position anywhere on the board. i think they must be magnetic.

I think you're talking about this one: http://accessories.u...=19&sku=a0643515
4262
If you find that Karen's Directory Printer doesn't suit your needs, this wouldn't take more than a couple minutes to write up in AHK.
4263
Living Room / Re: could two numeric keypads work at the same time
« Last post by skwire on May 04, 2010, 05:29 AM »
I'm thinking we need to see some pictures of your various setups so we know what we're dealing with here.  =]
4264
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on May 04, 2010, 02:33 AM »
Could you enable drag&drop support in the playlist itself?

Not easily within AHK (the language this player is written in), no.

I sometimes want to move some track up or down ...

Ctrl-up/Ctrl-down will move a contiguous selection.

Could you make option to lock columns?

Again, not easily within AHK.  What I do is set a local hotkey to the "Justify columns" action to quickly resize columns.
4265
Living Room / Re: could two numeric keypads work at the same time
« Last post by skwire on May 02, 2010, 08:04 PM »
You would almost certainly have to use the HID stuff to make something like this work:  http://www.autohotke...orum/topic41397.html
4266
Website | Download
v1.0.3 - 2010-05-02
   + Added ability to specify a custom cursor.  (Thanks, nudone)
4267
Great to hear.  I'll promote that test build to a full release.  Thanks for the feedback.
4269
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by skwire on May 02, 2010, 02:08 AM »
That's something I would like.

Done.  Dropped files only, no folders. 

Website | Download
v1.0.1 - 2010-05-01
    + Added ability to handle multiple dropped files.  (Thanks, app103)
4270
I couldn't get it to go until I uninstalled Folder Guide,  MMM and another context menu program MooO  so there must be a correlation between having Context menu programs and Files2Folders

I honestly have no idea why it won't work with those other apps installed.

Thanks skwire another good program..

You're welcome.  I'm glad folks find it useful.
4271
Yeah...but I don't see how this will help you since you can't do much with the LMB held down, right?  In other words, you may want to change the LMB to a key or something.
4272
You can't do it directly with MAT, but you can easily with a couple of AHK hotkeys set up like this:

Code: AutoIt [Select]
  1. ~^!+LButton:: Run, C:\path\to\MouseAccelToggler.exe accel=on speed=20 cursor="C:\path\to\cursor.cur"
  2. ~^!+LButton Up:: Run, C:\path\to\MouseAccelToggler.exe accel=off speed=10 cursor="Default"

This will let you use ctrl-alt-shift-left mouse button down to do one thing and another when releasing it.
4273
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on May 01, 2010, 01:13 PM »
... I've also been meaning to add an option that will allow the user to specify a "no cover" image of their own.
Yes, please!  :)

In the meantime, you can simply replace res/no_cover.jpg with a JPEG of your own.
4274
Here's a test version with your custom cursor request: http://skwire.dcmemb...useAccelToggler_.zip

Simply pass cursor="c:\path\to\some\cursor.cur"

You can also pass cursor="Default" to restore the normal cursor.  One caveat that I haven't been able to figure out yet is that, when using a custom cursor, it is used for all cursor functions i.e. no resizing cursors, no I-beam, etc.   :huh:  At any rate, let me know if it works for you.  I've tested it under Win2k and WinXP.  I don't have Vista or Win7.

not sure what's wrong but all Mouse Acceleration Toggler functions have stopped working here. i've not rebooted yet so will have to see what happens after that.

I haven't a clue.   :-[
4275
Skrommel's Software / Re: all links for software are broken
« Last post by skwire on May 01, 2010, 07:41 AM »
Agreed, great idea.
Pages: prev1 ... 166 167 168 169 170 [171] 172 173 174 175 176 ... 222next