| Author |
Message |
Forum: Scripts Topic: SyntaxTidy cont´d |
| Hajos |
|
Posted: July 10th, 2005, 12:02 pm
|
|
Replies: 4 Views: 3542
|
| Hi all, Toralf generously conceded that I add to his work on SyntaxTidy he offered in http://www.autohotkey.com/forum/viewtopic.php?t=2528&start=0 I gladly seized this license to add a few features - and thanks to Toralf for his work, and to all others who contributed ideas. All further suggesti... |
|
 |
Forum: Scripts Topic: [Search] Script for email appl.: "Paste as external quo |
| Hajos |
|
Posted: July 3rd, 2005, 3:09 pm
|
|
Replies: 11 Views: 5321
|
Seems, hardly anything is ever finished.
Found some bugs (thnx A. Borutta)
Edited the last but three post
Hajos |
|
 |
Forum: Scripts Topic: Syntax-Tidy for scripts (indentation and case correction) |
| Hajos |
|
Posted: June 22nd, 2005, 9:33 am
|
|
Replies: 54 Views: 12069
|
| Hi Toralf, Do you think this is feasible? Couldn´t resist the challenge. So here´s a further instalment Modifications: - Spell checking of self defined functions and subroutines (Upper/Lower case) uses names in function/subroutine definition - The present indentation inside block comments and contin... |
|
 |
Forum: Support Topic: Reg help |
| Hajos |
|
Posted: June 22nd, 2005, 8:55 am
|
|
Replies: 3 Views: 1111
|
| Hi JoeB, trying to use this script to show auto runs in my pc you might try the second of the following functions; cf the examples Reg_GetValue( RootKey, Key, ValueName ) { local Value RegRead, Value, %RootKey%, %Key%, %ValueName% If ErrorLevel Return *Error* Return %Value% } Reg_G... |
|
 |
Forum: Support Topic: use of iniwrite and iniread on variables instead of filename |
| Hajos |
|
Posted: June 20th, 2005, 10:51 am
|
|
Replies: 3 Views: 850
|
| Hello MIchael I would like to use iniread on the contents! of a variable. This variable contains the content of an (encrypted) inifile You´ll probably have to parse the string yourself. If you save the following sniplet as "initest.ahk" the script will take itself as its own inifile. FileRead,inifil... |
|
 |
Forum: Scripts Topic: [Search] Script for email appl.: "Paste as external quo |
| Hajos |
|
Posted: June 20th, 2005, 10:46 am
|
|
Replies: 11 Views: 5321
|
Hello, Melaneres,
Quote: Is there a way to hide the GUI at the start and only show it with Config? Yes. Replace line #18Code: gui, show, ,%xq_Scriptname%
by Code: xq_always := ( xq_titletext = "" ) Gosub, xq_makehk to activate the hotkey immediately
Hajos |
|
 |
Forum: Scripts Topic: [Search] Script for email appl.: "Paste as external quo |
| Hajos |
|
Posted: June 15th, 2005, 9:26 am
|
|
Replies: 11 Views: 5321
|
| Here´s a slightly improved version of a previous script. Now the marking of the clipboard contents to be quoted is configurable. BTW, @Toralf, Chris: WinActive("WinTitle") is case sensitive whereas StringGetPos and InStr(ActiveTitle,WinTitle) are not. Now a version 1.1 ; Insert Clipboard Contents as... |
|
 |
Forum: Issues Topic: Version 1.0.35.xx curly brackets on German keyboard |
| Hajos |
|
Posted: June 9th, 2005, 1:18 pm
|
|
Replies: 2 Views: 991
|
Wow that´s fast
thanks again for all your work
Hajos |
|
 |
Forum: Scripts Topic: Configurable Gui for Window dependent hotkeys and hotstrings |
| Hajos |
|
Posted: June 9th, 2005, 1:15 pm
|
|
Replies: 2 Views: 1940
|
| Here´s a lengthy script I made up mainly for my own use - and in order to gain a little experience in scripting techniques. ahk - excellent toy! Only yesterday I realized though ( http://www.autohotkey.com/forum/viewtopic.php?t=1937 ) that most of is already done. Nevertheless ... ; Configurable Gui... |
|
 |
Forum: Scripts Topic: [Search] Script for email appl.: "Paste as external quo |
| Hajos |
|
Posted: June 9th, 2005, 1:05 pm
|
|
Replies: 11 Views: 5321
|
| Hi Toralf, I agree with your first point but not with the second one. Though not explicitly stated in my previous post, an empty %xq_titletext% is meant to allow the hotkey to work in all windows. "IfWinActive, %xq_titletext%" doesn´t do it. But I´d like to see a more elegant way to reach this objec... |
|
 |
Forum: Scripts Topic: Syntax-Tidy for scripts (indentation and case correction) |
| Hajos |
|
Posted: June 8th, 2005, 11:00 pm
|
|
Replies: 54 Views: 12069
|
| Hello Toralf, thx for integrating my lines into your script - makes me proud. And here´s my try at an extension concerning line continuation. As to the other questions (case correction of function names), I´ve to think about it. ; - added 2005-06-08: indentation of implicit continuation lines, by HJ... |
|
 |
Forum: Issues Topic: Version 1.0.35.xx curly brackets on German keyboard |
| Hajos |
|
Posted: June 8th, 2005, 6:45 pm
|
|
Replies: 2 Views: 991
|
| Dear Chris, thanks for your excellent work. It´s a pleasure and a necessity to have - can´t do without. (Made so many LaTeX hotkeys comprising backslash and curly brackets - keys that are a bloody nuisance to enter on a German keyboard without ahk.) Now I got a little problem, though. Up till versio... |
|
 |
Forum: Support Topic: how can i use '<' char as a hotkey |
| Hajos |
|
Posted: June 7th, 2005, 8:13 pm
|
|
Replies: 4 Views: 740
|
| On some keyboards "<" is a normal, i.e. not a shifted key. Try to find out the scan code. On a German keyboard, e. g., it´s 056 so I use SC056:: Send, \ ; use key < for "\" ^+SC056:: Send, {vkE2sc056} ; use Shift-Ctrl-< for "<" Hajos |
|
 |
Forum: Scripts Topic: [Search] Script for email appl.: "Paste as external quo |
| Hajos |
|
Posted: June 7th, 2005, 8:08 pm
|
|
Replies: 11 Views: 5321
|
| The code of second post above changes the behaviour of the Shift-Ctrl-V key in TB editor only, such that the current clipboard contents are marked with "| " at the beginning of each line. ... it seems that it tries to search for the string "thunderbird" in the title of windows, doesn't it. No. It lo... |
|
 |
Forum: Scripts Topic: [Search] Script for email appl.: "Paste as external quo |
| Hajos |
|
Posted: June 5th, 2005, 4:19 pm
|
|
Replies: 11 Views: 5321
|
| I like the idea. You might try the following lines: $^+v:: WinGetTitle, active_title, A ; Thunderbird StringGetPos, thbd_pos, active_title, Verfassen: ; German version of TB If ( thbd_pos = 0 ) { thbd_a:=Clipboard StringReplace, thbd_b, thbd_a, `n,`n|%A_Space%, A StringRight, thbd_c, th... |
|
 |
| Sort by: |