topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday November 12, 2025, 2:09 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 ... 36 37 38 39 40 [41] 42 43 44 45 46 ... 309next
1001
do you know any way to use Alt Drag one-handed? 
You could turn on the windows feature 'sticky keys' for that, perhaps?

That works with MoveIt but not Alt Drag.  No biggie.  My fake mouse gesture in MoveIt is enough to skate by while cinnamon rolling.  :)

If Alt Drag proves stable then I am happy.  :)
1002
General Software Discussion / Re: Anyone using Blackbird?
« Last post by MilesAhead on March 20, 2016, 09:21 AM »
Hi guys, I realize this is an old-ish thread but I wanted to clear a few things up.

-Blackbird Dev (March 20, 2016, 08:11 AM)

Glad you chimed in.  Thanks for the info.   :Thmbsup:
1003
Living Room / Re: Recommend some music videos to me!
« Last post by MilesAhead on March 19, 2016, 10:36 AM »
Miles Davis - Recollections from the Double Image album

1004
I just use the alt-drag application for automatic window snapping

Ok.  I'll check it out.  I noticed the same programmer did SuperF4 btw.

Edit:  Seems like I can use it while MoveIt is active as long as I disable the MoveIt Snap to Quadrant feature.  I like how Alt Drag slides to window and screen edges. Not too much magnetism.  Pretty cool.

1005
Textarea Cache was just updated  :up:

* Fix compatibility with Firefox 45
-Textarea Cache 0.9.3.4


Thanks for the heads up.   :up:
1006
@ycomp do you know any way to use Alt Drag one-handed?  I like the right click drag window resizing but I hate having to use two hands just because I have to hold down the Alt key.

It is not a big deal except when trying to eat while moving windows around and surfing the net etc..  I hate to have to put down my cinnamon roll because it will get the desktop sticky.  It is just awkward.  I am usually sitting in a library when WiFi-ing.. If I was in my own place that would be another matter.  :)
1007
Skrommel's Software / Re: OnMessage(0x218,"FunctionName") question
« Last post by MilesAhead on March 18, 2016, 09:41 PM »
Thank you for getting me on the right track

You are most welcome.  I am glad it worked out.  I should have gotten onto the LastFound thing right away.  Sometimes I have to sneak up on stuff.  :)
1008
Skrommel's Software / Re: OnMessage(0x218,"FunctionName") question
« Last post by MilesAhead on March 18, 2016, 02:03 PM »
The call with "FunctionName" is not to be taken literally.  That is how it is written in the help.

I got Message Registration Succeeded with this.

Code: Autohotkey [Select]
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5. LastFound := WinExist()
  6.  
  7. DllCall("RegisterSuspendResumeNotification", "ptr", A_ScriptHwnd, "uint", 0)
  8. Name := OnMessage(0x218, "myfunc")
  9. If (! Name)
  10. {
  11.   MsgBox Message Registration Failed
  12. }
  13. MsgBox Message Registration Succeeded
  14.  
  15. myfunc(wParam, lParam, msg, hwnd)
  16. {
  17.     MsgBox myfunc was called
  18. }
1009
Living Room / Re: What books are you reading?
« Last post by MilesAhead on March 18, 2016, 07:53 AM »
Elizabeth Moon short stories


1010
Just shows to go you, you can wash a keyboard in water, but you can't make it drink.  :D


1011
Living Room / Re: Movies you've seen lately
« Last post by MilesAhead on March 17, 2016, 12:58 PM »
Dirty Harry

Do you feel lucky?  The first time I saw that flick was at Frank N Steins on Commonwealth Ave. Boston.  All the college kids booed Harry as he violated the psycho's civil rights etc..  :)  It was a different time then.  :)
1012
Post New Requests Here / Re: Move/Organize Files Into Folders
« Last post by MilesAhead on March 17, 2016, 07:07 AM »
I would take a look at this free file manager, MultiCommander.

It has a built in scripting mechanism.  So I am sure it could do things like move files to folder by age/size as you require.  I have not used it other than to look around it and the documentation a bit since I have so much stuff that launches Explorer windows and moves them.  But it seems quite well done.  It has both native 32 and 64 bit builds.

Please do not ask me how to use the scripting.  I have been trying to figure that out in the documentation.  But it has online forums for guidance.  It is just that I haven't spent much time with it, being sort of locked into Explorer.

1013
Skrommel's Software / Re: OnMessage(0x218,"FunctionName") question
« Last post by MilesAhead on March 16, 2016, 02:46 PM »
If you use the expression form of the function as in the example you can test "Name" for blank on failure.

Code: Autohotkey [Select]
  1. Name := OnMessage(MsgNumber, "FunctionName")
  2. If (! Name)
  3. {
  4.   MsgBox Message Registration Failed
  5. }
  6. ; do stuff if it worked

Edit:  Also even though the docs say you do not need to have all the params in the function definition I have found stuff works better if I use all four.

If your registration code does return the expected function name then it may be something with Windows where the change of state is not broadcasting a message for some reason.  But esp. when first trying to get code to work it is good to check the return codes for errors or wrap the code in try catch so that errors are reported.

Edit2:  Skrommel has not been around in a while so I took the liberty of sticking in my $.02.  :)

Edit3:  Also try setting DetectHiddenWindows, On before calling OnMessage since you are not using a Gui.

Edit4:  AHK uses an implied window handle called LastFound.  See the examples for OnMessage and DetectHiddenWindows.  A standard trick is to call WinExist() with a blank param to set LastFound to the handle of the current AHK program.  That's the most likely cause.

A better resource is: https://autohotkey.com/boards/index.php
see the "ask for help" board.  You will get a better explanation than the one I gave I am sure.  That's where I go when I get stuck on something AHK.  :)

1014
General Software Discussion / Re: Softpedia suggestions/feedback?
« Last post by MilesAhead on March 13, 2016, 07:14 PM »
They are active on twitter and have a contact page for their various editors http://www.softpedia.com/editors/

Thanks.   :Thmbsup:
1015
General Software Discussion / Re: Softpedia suggestions/feedback?
« Last post by MilesAhead on March 13, 2016, 01:51 PM »
That must be on purpose, they want you to click through, so they can serve you more ads  :huh:

Could be.  Every posting is a "review" now by some named individual.  It used to be that at least the category of the program was in the snippet.  Whatever software they use to put the snippet in the list should be set to start at the word following the white space 40+ characters in or so.   That's all it would take.

It seems like a recent development.
1016
General Software Discussion / Softpedia suggestions/feedback?
« Last post by MilesAhead on March 13, 2016, 12:17 PM »
Anyone know how to send suggestions/feedback to softpedia.com?

Every software description starts with "a simple and reliable software to..." so that it does no good to view the description snippet in the list.  You have to open every unfamiliar entry to get a clue what it does.  A lot of wasted effort.

I see no feedback or suggestion button anywhere.
1017
Living Room / Re: Recommend some music videos to me!
« Last post by MilesAhead on March 12, 2016, 05:00 PM »
Not video.  But WDNA Miami is a 24/7 source of Serious Jazz

http://www.iheart.co...m-serious-jazz-6787/
1018
General Software Discussion / Re: Real-time Stock Data
« Last post by MilesAhead on March 11, 2016, 07:56 PM »
Thanks for the link, but it's not quite what I'm looking for.
I want a standalone app sitting in my tray that should be simple to use.
A simple price trigger alert in real-time, not a web-based appl.

Like I mentioned, the closest to what I need is sStockquotes (http://skwire.dcmemb...fp/?page=sstockquote)
but it doesn't give me real-time alerts.

For the reasons skwire gave it is not practical to develop freeware that requires a paid service to function.  I did just happen to come across this freeware that may be of interest, just now:

http://www.snapfiles.com/get/jstock.html
1019
General Software Discussion / Re: Real-time Stock Data
« Last post by MilesAhead on March 10, 2016, 11:55 AM »
I think you are referring to the program by Skwire.  What I was trying to get at was how the data is contained.  In other words do you only get a ticker, can it be copied to a file?  I am out of my element here since I don't dabble in stocks.  I did see this in searching but I don't know if it can be used with your data feed:

http://www.zignals.c..._alerts/stock_alerts
1020
General Software Discussion / Re: Real-time Stock Data
« Last post by MilesAhead on March 09, 2016, 01:11 PM »
How is the real time data displayed/stored?  You may be able to do a tray utility to watch a window or file for key phrases like Symbol=$x.xx or whatever, and pop up a msgbox.  But the tray program would have to be able to easily scan through the file or whatnot watching for the trigger text.

Can you give any idea of the output or how the data can be accessed and what it looks like?

1021
General Software Discussion / Re: MoveIt 1.4.0.0
« Last post by MilesAhead on March 09, 2016, 11:59 AM »
MoveIt 1.4.0.0  Now "One Hand" mode will set the window width and/or height to 2/3 of the desktop work area if currently less than that.  This is only applied if the window is resizable and set to a "Tic Tac Toe" position via the One Hand mode.  If you wish to move the window without resizing use one of the other methods such and holding middle mouse button on the caption bar while pressing 1-9.

I made this change because it is such a pain to use two hands while eating and playing on the computer.  I hate having to put my cinnamon roll down to use MoveIt.  The One Hand mode helped but moving a small window required using two hands if I wanted to make the window larger at the same time.  A lazy man's feature.  :)

The latest version has been uploaded.  Link in first post.

Edit:  I also changed the Snap Window to Quadrant to only use the Left Alt key.  This can avoid conflict with utilities such as Alt Drag.  Alt Drag can be set to only use the Right Alt key.

1022
Living Room / Re: What books are you reading?
« Last post by MilesAhead on March 09, 2016, 09:22 AM »
http://www.amazon.co...rds=isabella+vedichi (free until March 11th)

Somehow a "crash" course in C++ doesn't bring to mind robust programming techniques.  :)
1023
Living Room / Re: What books are you reading?
« Last post by MilesAhead on March 08, 2016, 11:37 AM »


I just finished this yesterday.  I really enjoyed it.  Just for the sake of accuracy, I read the hardcover print edition.

Spoiler
This novel has a cool plot gimmick.  I won't give it away entirely.  Just imagine The Old Jedi Mind Trick(tm) taken to its logical conclusion.



1024
General Software Discussion / Firefox 45.0 released both x86 and x64
« Last post by MilesAhead on March 08, 2016, 11:26 AM »
http://www.softpedia...-Firefox-Final.shtml

I guess these beta release notes will do until the stable release notes are posted:
https://www.mozilla.....0beta/releasenotes/

I am running the x64 Firefox now.  Nothing weird has happened yet.   :Thmbsup:
1025
General Software Discussion / Re: Slysoft shutdown (by government action?)
« Last post by MilesAhead on March 06, 2016, 08:15 PM »
That whole disc decryption thing seems to be a jungle.  I wondered why the author of DVD Shrink was forced to stop developing or hosting it, but other web sites still make it available.  It always seemed like if you charged money for disc copy utilities you weren't shut down but if it was free you were(or maybe income means you can put a laywer on retainer.)  Also I always thought it kind of strange that MakeMKV would decrypt BluRay discs but not standard DVDs.  The author of MakeMKV wants no part of decrypting the DVDs.  The law sure is weird.

Pages: prev1 ... 36 37 38 39 40 [41] 42 43 44 45 46 ... 309next