AutoHotkey Community

It is currently May 27th, 2012, 1:01 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 54 posts ]  Go to page Previous  1, 2, 3, 4  Next
Author Message
 Post subject:
PostPosted: January 3rd, 2010, 1:46 am 
Offline

Joined: April 24th, 2009, 7:06 pm
Posts: 87
Great Job.

The Restore Point-Function is missing in Notepad++ :cry: :cry:

Deep-Silence


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 4th, 2010, 11:18 am 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
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....).

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 5th, 2010, 6:47 am 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
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!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 22nd, 2010, 5:47 am 
Offline

Joined: January 18th, 2006, 7:39 am
Posts: 274
Location: Conway, Arkansas
You've really outdone yourself, jballi. QuickAHK is something that I've used almost daily since its inception. Great job.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 22nd, 2010, 1:55 pm 
Any chance iSense can be added to this ???

http://www.autohotkey.com/forum/topic12985.html


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 22nd, 2010, 2:00 pm 
Offline
User avatar

Joined: December 21st, 2007, 3:14 pm
Posts: 3826
Location: Louisville KY USA
more that isense can be configured to work with quick ahk

_________________
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: January 23rd, 2010, 2:11 pm 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
Marty wrote:
Any chance iSense can be added to this ???

http://www.autohotkey.com/forum/topic12985.html

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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 4th, 2010, 7:12 pm 
Offline

Joined: January 18th, 2010, 9:25 am
Posts: 193
Location: Switzerland
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,


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 5th, 2010, 2:39 am 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 30th, 2010, 4:26 pm 
Offline

Joined: March 20th, 2010, 9:49 am
Posts: 224
fantastic

great use of AHK :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 31st, 2010, 7:49 am 
This existed for a while, but somehow I missed it. Very nice.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 31st, 2010, 9:41 am 
Offline

Joined: March 20th, 2010, 9:49 am
Posts: 224
woah
11000 lines of code without #INCLUDE files!

excellent, it could replace Scite as my default editor
i am not saying Scite is bad :D


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 25th, 2010, 6:00 am 
Offline

Joined: April 13th, 2010, 8:05 am
Posts: 29
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 10th, 2010, 10:55 am 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 10th, 2010, 10:56 am 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
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.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 54 posts ]  Go to page Previous  1, 2, 3, 4  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 6 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