topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Sunday June 29, 2025, 12:29 pm
  • 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 ... 47 48 49 50 51 [52] 53 54 55 56 57 ... 184next
1276
DC Member Programs and Projects / Re: WinKey Enhancement Project (WEP)
« Last post by jgpaiva on July 02, 2008, 01:12 PM »
[OffTopic] is that win+i or win+L  :tellme: :) win+i googles nothing so I think it's lock keyboard or lock something? (how do you unlock :tellme: :) ) [/OffTopic]
:) It's Win+L, for lock... It then displays a dialog to insert password (or use the fingerprint sensor, if you have one :P)
1277
Thanks for the heads up, Veign.. Removed.

PS: it's the second time this guy makes spam like this.
1278
FARR Plugins and Aliases / Re: Locate32 Plugin for FARR by Okke
« Last post by jgpaiva on July 02, 2008, 10:00 AM »
I can't download this plugin anymore.
True, looks like it doesn't exist.
1279
Find And Run Robot / Re: Latest FARR Release v2.107.04 beta - Sep 23, 2012
« Last post by jgpaiva on July 02, 2008, 05:34 AM »
just download from normal link in first post on thread.
Oh.. right  :-[
1280
Find And Run Robot / Re: Latest FARR Release v2.107.04 beta - Sep 23, 2012
« Last post by jgpaiva on July 02, 2008, 04:42 AM »
Am i the only one who as a hard time finding the farr private beta link?  :-[
1281
General Software Discussion / Re: Undelete - am I missing something?
« Last post by jgpaiva on July 02, 2008, 04:40 AM »
 :D Actually, i know that because the same thing already happened to me. I inadvertedly added too many files to the recycle bin and then it wouldn't open anymore, and ended up having to use the raw view do delete a few files ;)
1282
The mouse hook monitors mouse clicks for the purpose of activating mouse hotkeys and facilitating hotstrings. It is not supported under Windows 95/98/Me because those operating systems require a different type of hook that must reside in a DLL file.
-ahk help file
:(

Ok, but i tried anyways. Here's the code:
; Author:         jgpaiva
;
; Script Function: replace double-right click by middle click
;

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


rbutton::
keywait,rbutton,T0.1
if(errorlevel != 0){
Send,{rbutton down}
keywait,rbutton
Send,{rbutton up}
return
}
keywait,rbutton,D T0.1
if(errorlevel = 0)
Send,{mbutton}
else
Send,{rbutton}
return

f11::exitapp

I recommend you keep that last line, so that you can close the script by pressing F11, in case it goes wrong (and takes your right-click away). It should work well (at least, it does here).
To modify the timeout for the double-click, change the "0.1" to something larger or smaller.

ps: This is actually fun to play with! :D

[edit] removed a debug tooltip [/edit]
1283
How about an ahk script to replace ctrl + rightClick by middle mouse button?
Another option would be using double-rightclick, so you could leave it always enabled.
1284
General Software Discussion / Re: Undelete - am I missing something?
« Last post by jgpaiva on July 02, 2008, 03:58 AM »
From what I understand, you are looking at the raw view of the recycle bin. (are you using xyplorer?)
All the files present there, can be found on the recycle bin (in a much more interesting form ;) ).
If you remove the files from recycle bin, they disappear from the Recycler folder.
1285
Thanks for the help jgpaiva  :up:.

(Still hoping that mouser can make an automatic space after the auto-complete though!  :))
-CatamountJack (July 01, 2008, 08:14 PM)
You're welcome!
I also agree with adding a space.
Actually, i think this autocomplete needs a global rethinking, because it doesn't really cope well with regular expressions :S
1286
Screenshot Captor / Re: Blurry Image
« Last post by jgpaiva on July 01, 2008, 07:18 PM »
I'm not exactly sure, but isn't there transparency on the arrows and text? If so, that could be the problem.
1287
DC Member Programs and Projects / Re: WinKey Enhancement Project (WEP)
« Last post by jgpaiva on July 01, 2008, 06:56 PM »
 ;D But that's a nice OT.. Thanks for the heads up, nosh!
1288
Living Room / Re: Just needed to clear my 666 post count
« Last post by jgpaiva on July 01, 2008, 06:41 PM »
Never underestimate the powers of paint.net's timetravel feature :P Untitled.png
1289
Coding Snacks / Re: My first program.
« Last post by jgpaiva on July 01, 2008, 06:36 PM »
This might not belong in the coding snacks section and if not I'm sorry. I guess I'm just exited that I finally got around to learning this stuff.
-alivingspirit (July 01, 2008, 04:33 PM)
:D No problem! Actually, if you'd like to get some more constructive criticism, the developer's section might be more suited, and the c++ experts might give you a hand. (if you'd like, i can move it there, just pm me).

I like the game!
great strategy for gameplay
Interestingly, 5 atempts is exactly one atempt short of the required number to always win this game :P Using Binary Search, you can always end up with 2 numbers to choose (in the worst case scenario :) )

Keep it up, maybe we'll get a new coding snacks author ;)
1290
FARR Plugins and Aliases / Re: New plugin: FARR MostRecentlyUsed
« Last post by jgpaiva on July 01, 2008, 02:32 PM »
nitrix: doesn't look like there's any path to a file.. If there was one in any of those folders, it might be possible to get them..
1291
Sorry, i really didn't express myself correctly. I meant that you move on "enable.bat" out of the folder, if you're not using it directly (except through aliases) anyway.
Does increasing the score of the alias fix the problem?
1292
I'm honestly still a bit confused about what it's useful for!
If it's useful (or just fun ;)) for others, and entertaining for you, it's a great program!
1293
DC Member Programs and Projects / Re: WinKey Enhancement Project (WEP)
« Last post by jgpaiva on July 01, 2008, 01:16 PM »
wep: publishing the source allong with the programs on your main page has 2 advantages:
  1 - people will trust your programs (more) because they can compile them themselves
  2 - can serve as a learning ground for others

About gridmove.. I think you just described what gridmove does, i can't understand what you're asking for..
1294
CatamountJack: I think the only problem is that your "enable" script is in the directories farr search. I suppose you never want to launch the bat file directly, so, just remove it from the "c:\shortcuts" and you should be fine ;)
1295
FARR Plugins and Aliases / Re: New plugin: FARR MostRecentlyUsed
« Last post by jgpaiva on July 01, 2008, 10:08 AM »
Ok, i'll update :)
1296
FARR Plugins and Aliases / Re: New plugin: FARR MostRecentlyUsed
« Last post by jgpaiva on July 01, 2008, 09:36 AM »
This may be a very good candidate for something you would want to display in the farr window as soon as farr is shown, instead of the default list of last programs launched by far.  you can do this if you want by going to the hotkeys configuration in far and either modifying the hotkey trigger of choice (Break key) or adding a new one, and specifying mru as the text for the search edit box.
Visual Guide:

Screenshot - 2008_07_01 - 1527-20.png
Screenshot - 2008_07_01 - 1528-27.png


PS: mouser: in SC v2.37.01, saving a file after adding a shape to it results in crazy failure, on my vista64.
1297
FARR Plugins and Aliases / Re: New plugin: FARR MostRecentlyUsed
« Last post by jgpaiva on July 01, 2008, 09:23 AM »
Ok.. The mru for acrobat is a bit different.. It's located under HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\8.0\AVGeneral\cRecentFiles. But the problem is that it stores the entries under keys named c# (where # is a number), and then those have values named "tDIText" that store the path.
Oh, and the path looks like this: "/D/Ist/_Current/CM/Apresentação/18-automatic-partitioning.pdf" (which is even more stupid :( ).
Would it be possible to get this to work for acrobat?
If not, no biggie :)
1298
FARR Plugins and Aliases / Re: New plugin: FARR MostRecentlyUsed
« Last post by jgpaiva on July 01, 2008, 09:15 AM »
I just had a brilliant idea!!

People: when you post a link to an app, please post the link for its .dcupdate file too. Then, we can click it, and install if from dcupdater, which is much nicer than unpacking the .zip file into the farr directory ;)

The good advantage about this, is that you don't have to update the .dcupdate file, because who downloads it will always chose to "install latest version from the web"

jgpaiva  :-* dcupdater
1299
Post New Requests Here / Re: IDEA: A minute countdown timer in PowerPoint
« Last post by jgpaiva on July 01, 2008, 09:10 AM »
maybe it should exit if user presses ANY key
Not sure if that's safe, not all keyboards have that key   :huh:  :huh:
1300
FARR Plugins and Aliases / Re: New plugin: FARR MostRecentlyUsed
« Last post by jgpaiva on July 01, 2008, 09:08 AM »
czechboy: For that, i think you need to find out where those lists are saved ;)
Pages: prev1 ... 47 48 49 50 51 [52] 53 54 55 56 57 ... 184next