AutoHotkey Community

It is currently May 26th, 2012, 11:18 am

All times are UTC [ DST ]




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 20 posts ]  Go to page Previous  1, 2
Author Message
 Post subject:
PostPosted: July 30th, 2008, 4:34 pm 
My AV detected a virus in SmartGUI4scite.exe. Please check your copy after dowload for viruses to keep your system up & running. Good luck. 8)

Cheers,
BoBo


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: October 18th, 2008, 3:01 pm 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
Hi,

there is an error in .\api\ahk.api

Code:
Loop [, Count]
Loop,FilePattern [, IncludeFolders?, Recurse?]
Loop,Parse , InputVar [, Delimiters|CSV, OmitChars]
Loop,Read , InputFile [, OutputFile]
Loop,HKLM|HKU|HKCU|HKCR|HKCC [, Key, IncludeSubkeys?, Recurse?]

CORRECT WOULD BE

Code:
Loop [, Count]
Loop ,FilePattern [, IncludeFolders?, Recurse?]
Loop ,Parse , InputVar [, Delimiters|CSV, OmitChars]
Loop ,Read , InputFile [, OutputFile]
Loop ,HKLM|HKU|HKCU|HKCR|HKCC [, Key, IncludeSubkeys?, Recurse?]


Please correct.

Thank you.

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun :wink:


Last edited by HotKeyIt on October 18th, 2008, 7:45 pm, edited 2 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 18th, 2008, 5:27 pm 
Offline
User avatar

Joined: December 21st, 2007, 3:14 pm
Posts: 3826
Location: Louisville KY USA
HotKeyIt wrote:
Hi,

there is an error in .\api\ahk.api
So far as i can see all you did was add a line break? is that correct?

_________________
No matter what your oppinion Please join this discussion
Formal request to Polyethene
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 18th, 2008, 5:39 pm 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
tank wrote:
So far as i can see all you did was add a line break? is that correct?


Sorry for the line break, it is the Space after Loop that is missing here.
Try to enter If in SciTE, you will see a up and down to choose available commands.
But for Loop it does not work, I wondered why and have taken a look, then added spaces and it works now.

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 2nd, 2008, 10:44 pm 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
I have played around with CallTips in SciTe and found a way to get them to work in right way.
I have changed ahk.api and ahk.properties and also added NumPut/NumGet/RegisterCallback to ahk.keywords.properties.

- It keeps showing CallTip even if you press Space.
- It will also mark current parameter in CallTip.
- I have also added description to each command and function that will be shown on second line in CallTip.

However there are 2 disadvantages:
1. Calltip will only work if you press {Tab} after your command or {(} after a function.
- This looks to be the only way to get CallTip to work correct.
- AutoHotkey accepts {,} + {Space} + {Tab} as first separator so using {Tab} will work as well.

2. CallTip is not shown automatically, not sure why.
- To show CallTip you need to press CTRL & SHIFT & SPACE.
- Use this code as workaround.
Code:
SetTitleMatchMode   RegEx
#IfWinActive   i)ahk\s.\sscite
~Tab::
   Sleep   100
   Send   ^+{Space}
Return


You need to replace following files:
.\SciTe\ahk.properties
.\SciTe\ahk.keywords.properties
.\SciTe\api\ahk.api

Additionally you have to enable Tabulators, press CTRL + SHIFT + I in SciTE.

Tell me what you think. :wink:

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun :wink:


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 20 posts ]  Go to page Previous  1, 2

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 8 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group