| Author |
Message |
Topic: Extended SendU function |
Bernd
Replies: 10
Views: 2048
|
Forum: Scripts & Functions Posted: Sat Apr 26, 2008 3:00 pm Subject: shorter procedure? |
Szia Máté,
I need exactly this function, a SendU that can be switched to using the clipboard.
I just wanted to start programming it myself when I came across this thread.
However, your procedu ... |
Topic: starting a script in suspended mode? |
Bernd
Replies: 6
Views: 233
|
Forum: Ask for Help Posted: Sat Nov 04, 2006 12:29 pm Subject: starting a script in suspended mode? |
| Thanks PhiLho! I am a friend of simple solutions, so I'll take your coding example. |
Topic: starting a script in suspended mode? |
Bernd
Replies: 6
Views: 233
|
Forum: Ask for Help Posted: Sat Nov 04, 2006 10:49 am Subject: starting a script in suspended mode? |
Thanks! It works!!!
Bernd  |
Topic: starting a script in suspended mode? |
Bernd
Replies: 6
Views: 233
|
Forum: Ask for Help Posted: Sat Nov 04, 2006 10:18 am Subject: starting a script in suspended mode? |
Is it possible to start a script in suspended mode, i.e. you need to toggle before the hotkeys in the script become enabled?
Haven't found any hint in the archive.
Thanks, Bernd  |
Topic: strange clipboard behaviour |
Bernd
Replies: 20
Views: 736
|
Forum: Ask for Help Posted: Mon Oct 09, 2006 4:51 pm Subject: strange fix |
I found a strange fix: Above the actual hotstring, I added three lines of "treadmill":
ClipSaved := ClipboardAll
Clipboard := ClipSaved
ClipSaved =
...
This does not completely fi ... |
Topic: strange clipboard behaviour |
Bernd
Replies: 20
Views: 736
|
Forum: Ask for Help Posted: Mon Oct 09, 2006 1:17 am Subject: strange clipboard behaviour |
| I am fine with Ctrl-V. My problem is the strange clipboard behaviour. Sometimes the hotstring sends the original clipboard content instead of the temporary Unicode letter, even if I trigger the same h ... |
Topic: strange clipboard behaviour |
Bernd
Replies: 20
Views: 736
|
Forum: Ask for Help Posted: Mon Oct 09, 2006 12:48 am Subject: strange clipboard behaviour |
| I tried Send, %clipboard% , but this will turn characters into ? or cut off the diacritical sign from the letter. So I have to stick to ^v. |
Topic: strange clipboard behaviour |
Bernd
Replies: 20
Views: 736
|
Forum: Ask for Help Posted: Mon Oct 09, 2006 12:23 am Subject: strange clipboard behaviour |
ASCII code will do for @, but not for š. I need Unicode.
Where exactly shall I put the ClipWait? |
Topic: strange clipboard behaviour |
Bernd
Replies: 20
Views: 736
|
Forum: Ask for Help Posted: Sun Oct 08, 2006 11:52 pm Subject: strange clipboard behaviour |
No, it will not
I told you, it's about non-ANSI characters. Try
Send, š
You will end up with something like Ä% or Ȥ… |
Topic: strange clipboard behaviour |
Bernd
Replies: 20
Views: 736
|
Forum: Ask for Help Posted: Sun Oct 08, 2006 11:34 pm Subject: strange clipboard behaviour |
I simply type at# - and the script ought to convert this into @.
Usually it does so, but only after the second or third triggering... and sometimes in between, it sends the clipboard's content instea ... |
Topic: strange clipboard behaviour |
Bernd
Replies: 20
Views: 736
|
Forum: Ask for Help Posted: Sun Oct 08, 2006 10:57 pm Subject: strange clipboard behaviour |
Imagine that you don't have the @ symbol on your keyboard. This ahk script should help:
:?c* :at#::
ClipSaved := ClipboardAll
Transform, Clipboard, Unicode, @
Send, ^v
Clipb ... |
Topic: compose å (a with ring above) from a and ° (ring) |
Bernd
Replies: 12
Views: 501
|
Forum: Ask for Help Posted: Wed Aug 09, 2006 8:11 pm Subject: physical location |
Hi Chris,
in the German keyboard layout, the ° is located on the (shifted) key in the very upper left corner of the keyboard (where UK has ¬ and US has ~).
The unshifted key will produce ^. This i ... |
Topic: compose å (a with ring above) from a and ° (ring) |
Bernd
Replies: 12
Views: 501
|
Forum: Ask for Help Posted: Wed Aug 09, 2006 3:23 pm Subject: compose å (a with ring above) from a and ° (ring) |
No, I haven't hotkeyed the character ° to something else.
I tried your suggestion
:?*:°::foo
but nothing was triggered.
Did it work in your script?
By the way, I noticed tha ... |
Topic: compose å (a with ring above) from a and ° (ring) |
Bernd
Replies: 12
Views: 501
|
Forum: Ask for Help Posted: Tue Aug 08, 2006 8:32 am Subject: keyboard layout |
I am currently using a German keyboard layout. I looked at several US and UK keyboard layouts, they really don't have a ° key. But you can use [Alt]+0176 to create a ° sign.
Maybe it's indeed better ... |
Topic: compose å (a with ring above) from a and ° (ring) |
Bernd
Replies: 12
Views: 501
|
Forum: Ask for Help Posted: Sat Aug 05, 2006 4:00 pm Subject: compose å (a with ring above) from a and ° (ring) |
To Chris:
Thanks, but I don't want to use a1 or a2 but a° (as a° ist is the most intuitive decomposition of å).
Every other character will work as a hotstring (a1, a-, a', a\, a?…), just a° is non ... |
| |