| View previous topic :: View next topic |
| Author |
Message |
Deep-Silence
Joined: 24 Apr 2009 Posts: 87
|
Posted: Sun Jan 03, 2010 12:46 am Post subject: |
|
|
Great Job.
The Restore Point-Function is missing in Notepad++
Deep-Silence |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4511 Location: Belgrade
|
Posted: Mon Jan 04, 2010 10:18 am Post subject: |
|
|
Two small issues:
| Code: | | SB_SetText("Font size changed. Font=". $Font . " Size=" . $FontSize) |
happening on several lines makes script unusable with AHKL due to the dot that is not separated by spaces.
2nd one is that it doesn't look good on 125% font size (Options, GoTo....). _________________
 |
|
| Back to top |
|
 |
jballi
Joined: 01 Oct 2005 Posts: 748 Location: Texas, USA
|
Posted: Tue Jan 05, 2010 5:47 am Post subject: |
|
|
| majkinetor wrote: | | Code: | | SB_SetText("Font size changed. Font=". $Font . " Size=" . $FontSize) |
happening on several lines makes script unusable with AHKL due to the dot that is not separated by spaces.
|
Thanks for pointing this out. I don't use AutoHotkey_L so I didn't notice the syntax anomaly. I have updated the code and the fix will be included in the next release.
Side note: To make sure the script worked correctly under AutoHotkey_L, I used QuickAHK to test itself. I just told QuickAHK to use AutoHotkey_L when running a script. I then loaded a copy of the QuickAHK source into the QuickAHK workspace and ran it. It was kinda freaky seeing two copies of QuickAHK running. The only way I knew that is was working correctly is that AutoHotkey_L uses a slightly different green H icon.
| majkinetor wrote: | | ... it doesn't look good on 125% font size (Options, GoTo....). |
I was able to duplicate the problem on the Goto window (code has been updated) but I was not able to duplicate the problem on the Options or any other windows. I tried it using Large Fonts (125%) and Extra Large Fonts (150%).
I'm using Windows XP SP3. Something tells me that this is "feature" of one of the newer operating systems. I agree that the problem should be fixed but I'm not sure how to approach fixing a problem for which I don't have a means of testing.
Thanks for your feedback. I appreciate it! |
|
| Back to top |
|
 |
skwire
Joined: 18 Jan 2006 Posts: 273 Location: Conway, Arkansas
|
Posted: Fri Jan 22, 2010 4:47 am Post subject: |
|
|
| You've really outdone yourself, jballi. QuickAHK is something that I've used almost daily since its inception. Great job. |
|
| Back to top |
|
 |
Marty Guest
|
|
| Back to top |
|
 |
tank
Joined: 21 Dec 2007 Posts: 3700 Location: Louisville KY USA
|
Posted: Fri Jan 22, 2010 1:00 pm Post subject: |
|
|
more that isense can be configured to work with quick ahk _________________
We are troubled on every side‚ yet not distressed; we are perplexed‚
but not in despair; Persecuted‚ but not forsaken; cast down‚ but not destroyed; |
|
| Back to top |
|
 |
jballi
Joined: 01 Oct 2005 Posts: 748 Location: Texas, USA
|
Posted: Sat Jan 23, 2010 1:11 pm Post subject: |
|
|
I'm not an iSense user myself so I had to download the script and try it for myself. From what I can tell, there are 4 compatibility issues. Some are easily overcome. The others... not so much.
The most important issue: (1) iSense doesn't appear to be compatible with the HiEdit control. Using the HiEditor program as the model, I tried changing all of the parameters, especially (2) the default hotkey (Ctrl+Space on the HiEdit control is the same as double-clicking), I just couldn't get iSense to work correctly. I haven't reviewed the iSense script so I couldn't even begin to speculate on why it doesn't work.
As for the QuickAHK program, the other issues are the (3) Escape and (4) Tab keys, QuickAHK has specific uses for these keys. There is a built-in mechanism to disable the functionality of the Escape key but as for Tab key... not so easy.
Thank you for your interest. If you have any additional questions or problems, please make a noise. |
|
| Back to top |
|
 |
Acris
Joined: 18 Jan 2010 Posts: 193 Location: Switzerland
|
Posted: Thu Feb 04, 2010 6:12 pm Post subject: |
|
|
Hello
thanks a lot for your script
it is very iinteresting
Is it possible to add the file menu option to close without leaving the editor
If you want to translate it in French I would be happy to help
Bug ??
In my code, i use more (CMD Command)
| Code: | | RunWait,%comspec% /c command.exe |
When I execute my code with QuickAHk, theses commands are not executed.
When I execute my code without QuickAHK It is Ok, |
|
| Back to top |
|
 |
jballi
Joined: 01 Oct 2005 Posts: 748 Location: Texas, USA
|
Posted: Fri Feb 05, 2010 1:39 am Post subject: |
|
|
| Acris wrote: | Is it possible to add the file menu option to close without leaving the editor
|
I'm sorry, I don't know what you mean. If you mean to "stop a running script", there is a file menu option for that - "Stop". In addition, you can use a hotkey (F10). But and however, both of these options require that QuickAHK is the active window. If this not what you mean (it probably isn't), please give it another shot. I'll try to help if I can.
| Acris wrote: | | If you want to translate it in French I would be happy to help |
Thank you for your offer. I've given support for multiple languages a little thought (not much). The problem is that, for the most part, the script is not designed to support translation. It needs to be redesigned to move the English constants to a single location or better yet, to an external file. As for the help file, there is no getting around doing a complete translation. Lucky for me, there is not much call for it yet so there is time to think it out.
| Acris wrote: | Bug ??
In my code, i use more (CMD Command)
| Code: | | RunWait,%comspec% /c command.exe |
When I execute my code with QuickAHk, theses commands are not executed.
When I execute my code without QuickAHK It is Ok, |
I didn't have any trouble running this. This is the command that I used to test:
| Code: | RunWait,%comspec% /c dir&&pause
|
This is almost the same thing.
| Code: | | RunWait,%comspec% /k dir |
Keep in mind that the script is run in the Run workspace which is actually a sub-folder of the QuickAHK folder. If you are trying to run a non-OS program (Ex: ThisIsARealProgram.exe), the program must either be in the path or you must manually copy the program to the Run workspace in order to get it to run from QuickAHK.
I hope this helps. Please let me know if you have any questions, problems, etc. |
|
| Back to top |
|
 |
XYZ
Joined: 20 Mar 2010 Posts: 224
|
Posted: Tue Mar 30, 2010 3:26 pm Post subject: |
|
|
fantastic
great use of AHK  |
|
| Back to top |
|
 |
AHKnow* Guest
|
Posted: Wed Mar 31, 2010 6:49 am Post subject: |
|
|
| This existed for a while, but somehow I missed it. Very nice. |
|
| Back to top |
|
 |
XYZ
Joined: 20 Mar 2010 Posts: 224
|
Posted: Wed Mar 31, 2010 8:41 am Post subject: |
|
|
woah
11000 lines of code without #INCLUDE files!
excellent, it could replace Scite as my default editor
i am not saying Scite is bad  |
|
| Back to top |
|
 |
jabobian
Joined: 13 Apr 2010 Posts: 29
|
Posted: Sun Apr 25, 2010 5:00 am Post subject: |
|
|
hi, jballi. great work.
but I wish you are still improving QuickAHk. The following features are most desired.
1 support Unicode.
2 Multiple Tab. Or an option to show the restore point list as a side bar.
3 Restore point can show an editable tag (can be embedded in the saved script) rather than only a date |
|
| Back to top |
|
 |
jballi
Joined: 01 Oct 2005 Posts: 748 Location: Texas, USA
|
Posted: Thu Jun 10, 2010 9:55 am Post subject: |
|
|
| jabobian wrote: | The following features are most desired.
1 support Unicode.
2 Multiple Tab. Or an option to show the restore point list as a side bar.
3 Restore point can show an editable tag (can be embedded in the saved script) rather than only a date |
Thanks for your feedback. I've added all of these items to the "To Do" list that I maintain for this project. I can't promise anything but I'll take a look/see. Right off the bat, I can say that Unicode may be a problem because from what I understand, the HiEdit control (especially the read/write file messages) don't do Unicode but like I said, I'll take take a look. |
|
| Back to top |
|
 |
jballi
Joined: 01 Oct 2005 Posts: 748 Location: Texas, USA
|
Posted: Thu Jun 10, 2010 9:56 am Post subject: |
|
|
I apologize for being a bit lax on this project but I've been working on other stuff. And as they say, if it ain't broke, don't fix it.
v2.1
Minor release with a small bug/syntax fix and a minor new feature. If the current version of QuickAHK is working fine for you, consider skipping this version. See the bottom of the first post for a complete list of changes. |
|
| Back to top |
|
 |
|