topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday April 18, 2024, 3:22 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - damax [ switch to compact view ]

Pages: [1] 2next
1
Screenshot Captor / Re: Resize image dialog is buggy in Windows 7
« on: January 29, 2021, 07:24 AM »
 :D :D :D Is this really still active? I had forgotten about this like 4 years ago :D :D :D
Not that I still have a computer running Win7 any more :D

2
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: September 07, 2016, 05:14 AM »
@IanB: Ooooh. That's a nice and clean solution. Alas, I'd really like a Double-Tap-thing like it was in TapTap ('cos RCtrl+m and even worse RCtrl+n are still quite awkward key-combos to use), so I tried to do it with RapidHotKey. Which kinda works although it's quite an ugly script...

Code: Autohotkey [Select]
  1. ; thanks to https://autohotkey.com/board/topic/35566-rapidhotkey/
  2.  
  3.  
  4. ~RShift::RapidHotkey("^c", 2, 0.1) ;COPY
  5. ~RControl::RapidHotkey("^v", 2, 0.1) ;PASTE
  6.  
  7.  
  8. RapidHotkey(keystroke, times="2", delay=0.2, IsLabel=0)
  9. {
  10.         Pattern := Morse(delay*1000)
  11.         If (StrLen(Pattern) < 2 and Chr(Asc(times)) != "1")
  12.                 Return
  13.         If (times = "" and InStr(keystroke, """"))
  14.         {
  15.                 Loop, Parse, keystroke,""
  16.                         If (StrLen(Pattern) = A_Index+1)
  17.                                 continue := A_Index, times := StrLen(Pattern)
  18.         }
  19.         Else if (RegExMatch(times, "^\d+$") and InStr(keystroke, """"))
  20.         {
  21.                 Loop, Parse, keystroke,""
  22.                         If (StrLen(Pattern) = A_Index+times-1)
  23.                                 times := StrLen(Pattern), continue := A_Index
  24.         }
  25.         Else if InStr(times, """")
  26.         {
  27.                 Loop, Parse, times,""
  28.                         If (StrLen(Pattern) = A_LoopField)
  29.                                 continue := A_Index, times := A_LoopField
  30.         }
  31.         Else if (times = "")
  32.                 continue := 1, times := 2
  33.         Else if (times = StrLen(Pattern))
  34.                 continue = 1
  35.         If !continue
  36.                 Return
  37.         Loop, Parse, keystroke,""
  38.                 If (continue = A_Index)
  39.                         keystr := A_LoopField
  40.         Loop, Parse, IsLabel,""
  41.                 If (continue = A_Index)
  42.                         IsLabel := A_LoopField
  43.         hotkey := RegExReplace(A_ThisHotkey, "[\*\~\$\#\+\!\^]")
  44.         IfInString, hotkey, %A_Space%
  45.                 StringTrimLeft, hotkey,hotkey,% InStr(hotkey,A_Space,1,0)
  46.         backspace := "{BS " times "}"
  47.         keywait = Ctrl|Alt|Shift|LWin|RWin
  48.         Loop, Parse, keywait, |
  49.                 KeyWait, %A_LoopField%
  50.         If ((!IsLabel or (IsLabel and IsLabel(keystr))) and InStr(A_ThisHotkey, "~") and !RegExMatch(A_ThisHotkey
  51.         , "i)\^[^\!\d]|![^\d]|#|Control|Ctrl|LCtrl|RCtrl|Shift|RShift|LShift|RWin|LWin|Alt|LAlt|RAlt|Escape|BackSpace|F\d\d?|"
  52.         . "Insert|Esc|Escape|BS|Delete|Home|End|PgDn|PgUp|Up|Down|Left|Right|ScrollLock|CapsLock|NumLock|AppsKey|"
  53.         . "PrintScreen|CtrlDown|Pause|Break|Help|Sleep|Browser_Back|Browser_Forward|Browser_Refresh|Browser_Stop|"
  54.         . "Browser_Search|Browser_Favorites|Browser_Home|Volume_Mute|Volume_Down|Volume_Up|MButton|RButton|LButton|"
  55.         . "Media_Next|Media_Prev|Media_Stop|Media_Play_Pause|Launch_Mail|Launch_Media|Launch_App1|Launch_App2"))
  56.                 Send % backspace
  57.         If (WinExist("AHK_class #32768") and hotkey = "RButton")
  58.                 WinClose, AHK_class #32768
  59.         If !IsLabel
  60.                 Send % keystr
  61.         else if IsLabel(keystr)
  62.                 Gosub, %keystr%
  63.         Return
  64. }
  65. Morse(timeout = 400) { ;by Laszo -> http://www.autohotkey.com/forum/viewtopic.php?t=16951 (Modified to return: KeyWait %key%, T%tout%)
  66.    tout := timeout/1000
  67.    key := RegExReplace(A_ThisHotKey,"[\*\~\$\#\+\!\^]")
  68.    IfInString, key, %A_Space%
  69.                 StringTrimLeft, key, key,% InStr(key,A_Space,1,0)
  70.         If Key in Shift,Win,Ctrl,Alt
  71.                 key1:="{L" key "}{R" key "}"
  72.    Loop {
  73.       t := A_TickCount
  74.       KeyWait %key%, T%tout%
  75.                 Pattern .= A_TickCount-t > timeout
  76.                 If(ErrorLevel)
  77.                         Return Pattern
  78.     If key in Capslock,LButton,RButton,MButton,ScrollLock,CapsLock,NumLock
  79.       KeyWait,%key%,T%tout% D
  80.     else if Asc(A_ThisHotkey)=36
  81.                 KeyWait,%key%,T%tout% D
  82.     else
  83.       Input,pressed,T%tout% L1 V,{%key%}%key1%
  84.         If (ErrorLevel="Timeout" or ErrorLevel=1)
  85.                 Return Pattern
  86.         else if (ErrorLevel="Max")
  87.                 Return
  88.    }
  89. }

Thank a TON for your support so far.

3
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: September 06, 2016, 04:48 AM »
OKAY! I finally found some time and solved my problem. (No, I haven't. See update).

As IanB suggested I used AutoHotKey, created a script, compiled it et voilĂ ... it works. Better than ever ;)

If anyone's interested, here's the AHK code:

Code: Autohotkey [Select]
  1. ; AHK Script to redirect Double-Shift to Ctrl+C and Double-Ctrl to Ctrl+V
  2. ; Idea came from this Reddit: https://www.reddit.com/r/AutoHotkey/comments/44pn3m/double_tap_short_cut/
  3. ; done by daMax (//todamax.net)
  4.  
  5. Shift::
  6.  if (A_PriorHotkey = "Shift" AND A_TimeSincePriorHotkey < 250)
  7.  {
  8.     ; MsgBox double-click Shift.
  9.     Send, ^c
  10.   }
  11.   else
  12.   {
  13.   ; no double-click. just wait for the key to be released and move on with your life
  14.   KeyWait, Shift
  15.   return
  16. }
  17.  
  18.  if (A_PriorHotkey = "Control" AND A_TimeSincePriorHotkey < 250)
  19.  {
  20.     ;MsgBox double-click Control.
  21.     Send, ^v
  22.   }
  23.   else
  24.   {
  25.   ; no double-click. just wait for the key to be released and move on with your life
  26.   return
  27. }

This now seems to work in Windows Explorer, Notepad, Firefox etc.

I uploaded the finished EXE to my blog:
http://blog.todamax....9/daMaxCopyPaste.zip

You can also find the script there: http://blog.todamax....9/daMaxCopyPaste.ahk

Update: aahrg! It's no good :( now the Shift-Key doesn't work "on its own" anymore, so I cannot Shift keys at all. FAIL :(

4
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: August 04, 2016, 01:38 AM »
Mouser? Still there?

5
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: July 28, 2016, 05:03 PM »
Yeah, I guess I am the last user, but it's really a great tool for lefties like me.  :Thmbsup:

If you would make a 64bit build, I'd gladly test it.

I have zero experience with C++ (I'm a Managed Code N00b), so I will probably not be of much help, but I would give it a try anyways. With a Visual Studio project, even I should be able to set a breakpoint or something ;) I have no clue as how to detect a non-detected double-key-press but still I'd give it a try.

You got my mail address so if it's a small project just throw it over the fence or send me a link where to get it.

6
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: July 27, 2016, 01:27 AM »
Hm... Mouser? Are you still alive? In which language is TapTap written? Would it be possible to port this to .NET? I would gladly take a look at it...

7
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: June 17, 2016, 03:04 AM »
Oh dear. Is the latest version of TapTap really already 10 years old? My-oh-my, how time flies... I still use TapTap daily and extensively, so I am very sad to witness its steady decline. Just lately, TapTap stopped working in Firefox 46 and Chromium on my Windows7 64-bit machine.

I still use

// double right control to Control+V
keymap   DRC      :   C+V

// double right shift to Control+C
keymap   DRS      :   C+C

which works fine in most applications, but now it seems that I have to add Firefox and Chromium to the list of non-working apps, which is a pity because I spend a lot of time in the browser blogging, copy/pasting code etc.

Could it be that TapTap does not work well with 64-bit applications? This would be my guess by observing what happens here...

8
Screenshot Captor / Re: Resize image dialog is buggy in Windows 7
« on: October 23, 2015, 06:10 AM »
I believe this is to do with the system font size -- I suspect yours might be @ 150% (?)
With system font size here @ 125%, it looks like this (better than yours but still cropped in places):

Nope, I am on 100% font size

9
Screenshot Captor / Resize image dialog is buggy in Windows 7
« on: October 23, 2015, 12:44 AM »
The Edit / Resize Image (or canvas) dialog looks quite weird in Windows 7. Especially since the "Add a uniform border of size" textbox is completely out of sight...

Bildschuss_20151023_07-33-16.png

I am using Windows 7 Pro, 64 Bit and Screenshot Captor 4.13.0

10
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: October 21, 2014, 12:38 AM »
Hello again,

as the problem still exists and I still love TapTap so much  :-*, I wanted to ask if there is any chance that you might take a look at this? Does this even occur on your Windows7 or am I the only one?

11
Screenshot Captor / Re: SUGGESTION: Pixelate in Toolbar
« on: October 14, 2014, 07:00 AM »
yay  :Thmbsup:

12
Screenshot Captor / SUGGESTION: Pixelate in Toolbar
« on: October 14, 2014, 01:32 AM »
I just downloaded the latest version of SC and it seems to be getting better and better  :-*. I especially like the (new?) "pixelate inside selection" command in SpecialFX1. Would it be possible to add this to the available toolbar buttons in Options->Advanced Tweaking -> More Interface Options? And while you're at it, you could do the same for "Splice out strip defined by selection - Deluxe effects".

That'd be great.

14
Since a few versions the thumbnail-pane seems not to scroll down automatically anymore. This is a minor annoyance as the thumbnails are sorted "latest at the bottom" (which is not changeable to "latest at top" by the way) and so I always have to scroll down manually to see the latest screenshots.

Am I the only person experiencing this?

15
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: July 23, 2012, 01:02 AM »
Is the problem just under Windows 7 FILE EXPLORER? TapTap works fine in other windows 7 applications?

For me, the problem exists in
- Windows File Explorer (Window and Address-Bar)
- Notepad

It works in all other Microsoft apps like Excel, Word, Outlook and in all other apps as well

16
Screenshot Captor / Re: Menu toolbar behaves weird
« on: May 16, 2012, 01:34 AM »
Thanks!  :Thmbsup: That was easy but I wouldn't have found that one out by myself

17
Screenshot Captor / Menu toolbar behaves weird
« on: May 15, 2012, 03:25 AM »
Hi mouser,

today, my SC started with its menu toolbar on a very unusual spot (see attachment).

* Bildschuss_20120515_10-16-32.jpg (139.09 kB. 1197x946 - viewed 314 times.)

I have absolutely no idea how it got there and how to get it "on top" again.

Any suggestion?

18
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: June 16, 2011, 06:10 AM »
Can you try running TapTap in administrator mode (or windows xp compatibility mode, can't remember which one solved it)?

Tried XP-compatibility SP2 and 3 as well as "run as administrator": still no luck  :down:

19
TapTap / Re: CTRL-C shortcut not recognized in Win7-Explorer
« on: June 16, 2011, 02:14 AM »
Sorry for the long delay, I just didn't find the time. I did some testing and it seems that no keystroke whatsoever goes from Win7-Explorer to TapTap. I guess, answer 1 would be true.

The issue seems to occur in:

Windows Explorer
MS Paint 6.1 (Build 7600)


But all the other apps work fine (IE, Notepad, MS-Office, Firefox etc). I wouldn't care for paint, but in Explorer it really sucks.

20
Hi,

I use TapTap a LOT and just love it. But now I seem to have stumbled upon a little bug.

My configuration looks like this:

-- snip---

// double right control to Control+V
keymap   DRC      :   C+V

// double right shift to Control+C
keymap   DRS      :   C+C

-- snip---

It works nearly always, but if I

- try to copy a filename from the Windows Explorer (right-click -> rename)

or

- try to copy the address from the addressbar of the Windows explorer

via Double-Right-Shift, nothing gets copied to the clipboard.

It's not a severe bug but a little annoying.

I use
Windows 7 Enterprise 64Bit
currently updated version (May 26, 2011)



21
Screenshot Captor / Re: FTP Uploader Script
« on: September 15, 2008, 01:11 AM »
G'damn it. I hoped I had written something that was not implemented before :( well well, you can't have it all, right?

22
Screenshot Captor / Re: FTP Uploader Script
« on: September 01, 2008, 11:58 AM »
VbsToExe worked for you? The generated .exe doesn't do a thing here on my computer :huh: I used the command "VbsToExe.exe screenshot_to_ftp.vbs screenshot_to_ftp.exe" but when I double-click the *.exe, nothing happens. The same is true if I try to use the *.exe in SC. Just nothing......

23
Screenshot Captor / Re: FTP Uploader Script
« on: August 29, 2008, 02:01 AM »
...ermmm.... hm.... never experienced that case before because all my screenshots get timestamped.
The script uses the FTP-command put to upload the file. This here says that put will react with a "Permission denied"-error if the file already exists on the remote server :( I believe it'd be possible to delete the remote file first in that case but I can't be bothered at the moment  ;) Feel free to enhance the script if you like.

24
Screenshot Captor / Re: FTP Uploader Script
« on: August 29, 2008, 01:16 AM »
Thank you for the flowers, lanux128. Converting the script to an exe is indeed a very nice idea. Didn't know of vbstoexe yet. I think I will do this on the weekend <- does not work, see below.

25
I totally agree with app103 and mouser. Just because you are able to write a software like this does not mean that you have to publish it on the WWW. There are too many idiots out in the wild who could do some serious damage with this program. Think about it, skrommel and then remove it from your download area.....

Pages: [1] 2next