| Author |
Message |
Forum: Support Topic: Don't show script in Alt+Tab |
| schandl |
|
Posted: July 31st, 2008, 9:22 pm
|
|
Replies: 5 Views: 382
|
| I have downloaded a script which runs in the tray and puts a clock in the active title bar. The problem is that whenever I use Alt+Tab to switch between programs, I have a symbol for this script. Can I avoid that a script shows up in the Alt+Tab list? |
|
 |
Forum: Support Topic: Refresh GUI |
| schandl |
|
Posted: January 7th, 2007, 9:42 pm
|
|
Replies: 1 Views: 578
|
| I have a GUI with an edit-control A, a button and a readonly-edit-control B. I want to be able to enter a string in A, press the button so that the following happens: ⋅ Clear B ⋅ Calculate a certain result ⋅ Display result in B After that, I can enter something else ... |
|
 |
Forum: Suggestions Topic: IniRead with default value empty |
| schandl |
|
Posted: December 4th, 2005, 6:44 pm
|
|
Replies: 2 Views: 961
|
| I want to read some key from an ini-file. If the key is not present, the variable should be set to the empty string. Right now, I have this code: IniRead, Replace, %ConfigFile%, %ScriptName%, ReplaceThis if Replace = ERROR Replace = This is a little complicated and does not work if the key ReplaceTh... |
|
 |
Forum: Support Topic: Setting defaults for radio buttons |
| schandl |
|
Posted: December 3rd, 2005, 11:32 pm
|
|
Replies: 4 Views: 678
|
| toralf, thanks, you gave the right hint. Actually, the values of lng_ml_setCapital1 (first entry in first radio group) and lng_ml_setSlashes1 (first entry in second radio group) were the same ("No Change"), so the second GuiControl again set the default for the first radio group. Changing the values... |
|
 |
Forum: Support Topic: Setting defaults for radio buttons |
| schandl |
|
Posted: December 3rd, 2005, 8:08 pm
|
|
Replies: 4 Views: 678
|
| To clarify my problem: If ml_Slash=1, none of the radio buttons in the second group is selected. The first radio button group works correctly though, so if ml_Cap=1, the first of the three buttons in the first radio button group is selected. So it seems I can also check the radio button that has a v... |
|
 |
Forum: Support Topic: Setting defaults for radio buttons |
| schandl |
|
Posted: December 2nd, 2005, 10:42 pm
|
|
Replies: 4 Views: 678
|
| I have a weird behaviour of my script and don't find the problem. Maybe someone can help. Given the sub-routine sub_CheckIfSettingsChanged, the numeric variables ml_Cap and ml_Slash and a few string variables, I have the following code: Gui, Add, GroupBox, xs+10 ys+150 w270 h80, %lng_ml_setCapital% ... |
|
 |
Forum: Support Topic: IniRead with default value empty |
| schandl |
|
Posted: December 2nd, 2005, 10:37 pm
|
|
Replies: 2 Views: 903
|
| I want to read some key from an ini-file. If the key is not present, the variable should be set to the empty string. Right now, I have this code: IniRead, ml_Replace, %ConfigFile%, %ml_ScriptName%, ReplaceThis if ml_Replace = ERROR ml_Replace = This is a little complicated and does not work if the k... |
|
 |
Forum: Support Topic: URL Encoding |
| schandl |
|
Posted: December 1st, 2005, 10:16 am
|
|
Replies: 16 Views: 3842
|
| Serenity, the transform function does something different. It encodes for HTML - URL encoding is something else. Bobo and shimanov, what do you mean by using Javascript? Can I embed Javascript into AHK? Or should I look at the code and do something similar in AHK? shimanov, in your AHK code, is it c... |
|
 |
Forum: Support Topic: URL Encoding |
| schandl |
|
Posted: December 1st, 2005, 1:31 am
|
|
Replies: 16 Views: 3842
|
| I am wondering if there is an easy way to URL encode a string as described eg. at http://www.blooberry.com/indexdot/html/topics/urlencoding.htm ? So if I have a string xxx yyy{zzz I would get xxx%20yyy%7Bzzz The hard way would be to use a lot of StringReplace, but maybe there is something like URLen... |
|
 |
Forum: Support Topic: Pasting variable content |
| schandl |
|
Posted: November 20th, 2005, 12:22 am
|
|
Replies: 1 Views: 446
|
| Is there an easy way to paste the content of a variable at the current cursor position? Since I don't know the content, Send is not an option. Right now, I am using the clipboard but this might fail if someone intercepts ^v ClipSaved := ClipboardAll Clipboard := MyVariable Send, ^v Clipboard := Clip... |
|
 |
Forum: Support Topic: Getting UNC name of a drive |
| schandl |
|
Posted: November 19th, 2005, 2:30 pm
|
|
Replies: 1 Views: 558
|
| I am looking for a possibility to get the UNC name of a drive where a selected file is located. What I want to do is to select a file in Explorer, use some hotkey and then know something like \\server\share\path_to_file\file. This can be used to paste it in an email in order to avoid sending the fil... |
|
 |
Forum: Issues Topic: Problem with pass-through/tilde and Send |
| schandl |
|
Posted: May 20th, 2005, 8:28 pm
|
|
Replies: 6 Views: 1566
|
Toralf, you are right. But by now I decided to adapt the whole script to my needs instead of trying to extend using some weird hack. This will also help to learn a little more about AutoHotkey.
Bernd |
|
 |
Forum: Issues Topic: Problem with pass-through/tilde and Send |
| schandl |
|
Posted: May 19th, 2005, 7:56 pm
|
|
Replies: 6 Views: 1566
|
Thanks for the explanation, Chris. Your solution works, but only if Win+x is defined as in the exmaple. It does not work if it was defined using the Hotkey command. Oh well, I think I have to look into a work-around for the script I am trying to extend.
Thanks anyway
Bernd |
|
 |
Forum: Issues Topic: Problem with pass-through/tilde and Send |
| schandl |
|
Posted: May 18th, 2005, 7:15 pm
|
|
Replies: 6 Views: 1566
|
| I posted the following problem in the support section and some possible solutions were found. But I still wonder if this is the intended behaviour. Here is some example code: #y:: Send, #x Return ~#x:: MsgBox, Win+x was used Return Win+x shows a window, Win+y does nothing. If I leave out the tilde i... |
|
 |
Forum: Support Topic: Problem with pass-through/tilde and Send |
| schandl |
|
Posted: May 16th, 2005, 7:24 pm
|
|
Replies: 6 Views: 818
|
| Ok, I wanted to avoid to tell the whole story, but here we go. I am using the script ac'tivAid by the German computer magazine c't. It is available here: http://www.heise.de/ct/ftp/05/08/098/ Both the site and the script (=the comments) are in German. It has a function called LikeDirkey which is sim... |
|
 |
| Sort by: |