AutoHotkey Community

It is currently May 26th, 2012, 1:42 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 129 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6 ... 9  Next
Author Message
 Post subject:
PostPosted: November 27th, 2008, 6:22 am 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
Thank you so much for your continuous work on AHK, Chris!

I'm too old to believe in Santa, however I got a couple wishes that hopefully would come true:
1. Keep AHK compatible with Win9x (I'll be using Win98SE or nothing at all)
2. Allow for scripts with spaces in their names to be launched (currently there's an error stating 'script does not exist')

So far my scripts run correctly with the new beta. Keep up the good work and good luck with all of your projects!

_________________
AHK tools by Drugwash (AHK 1.0.48.05 and Win98SE)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 27th, 2008, 7:12 am 
Offline

Joined: April 18th, 2008, 7:57 am
Posts: 1390
Location: The Interwebs
Drugwash wrote:
2. Allow for scripts with spaces in their names to be launched (currently there's an error stating 'script does not exist')


I have never had such a problem...


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 27th, 2008, 7:56 am 
Offline
User avatar

Joined: May 10th, 2007, 10:54 am
Posts: 649
Location: .switzerland
Krogdor wrote:
Drugwash wrote:
2. Allow for scripts with spaces in their names to be launched (currently there's an error stating 'script does not exist')


I have never had such a problem...
might be an issue from win 98... xp + vista don't care spaces in the name...

_________________
http://securityvision.ch
AHK 2D GAME ENGINE


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 27th, 2008, 8:20 am 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
I have been given a helping hand in the mean time (thank you, corrupt!).

Since I had not installed AHK using the installer but only manually associated the .ahk files with the exe, the commandline for file opening missed the parameters.

Explorer > Tools > Folder Options > File Types (tab) --> AHK file --> Edit --> Actions > open > Edit. The field called "Application used to perform action:" should be "C:\Utils\AutoHotkey 1.0.47.06\AutoHotkey.exe" "%1" %* (path to the exe will vary according to AHK's location).

Thanks corrupt for the help and apologies for the inconvenience.

_________________
AHK tools by Drugwash (AHK 1.0.48.05 and Win98SE)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 27th, 2008, 8:46 am 
Offline

Joined: August 20th, 2008, 4:25 pm
Posts: 256
Awesome, thanks a lot Chris.

_________________
-Chavez.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 30th, 2008, 6:10 pm 
Offline

Joined: November 23rd, 2007, 10:23 am
Posts: 841
Location: ~/.
while testing the new beta, i stumbled upon this issue, which at least should be mentioned in the ahk help-file (i also think this is a buggy behaviour on direct text assignments in forced expressions and the smart comma handling, but at least mentioning it in the help file resulted to post it into wish-list instead of bug reports):
msgbox documentation update

additionally maybe a workaround as suggested by lexikos in this thread about trapping focus and rendering the gui unusable ([code-a-pit] a very annoying standard windows behaviour) can also be build in into the 1.0.48 release

besides i did not expirience any errors yet.

greets
dR

_________________
Image
    All scripts, unless otherwise noted, are hereby released under CC-BY


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 1st, 2008, 5:49 am 
I just tested it with all of my scripts and everything worked great and ran faster!


Top
  
Reply with quote  
PostPosted: December 9th, 2008, 6:34 pm 
Offline

Joined: December 4th, 2006, 10:35 am
Posts: 561
Location: Galil, Israel
Chris wrote:
In this version

Edit #3: LowLevel & dynamic code doesn't yet work with this beta version.



if helpful suggest,

include as built in function at least Lex' EVAL() function,

(and while at at, Sean's Invoke() ,

maybe even GUI, dock

)


EVAL() so important an extension to interp. langauge,

and Invoke() so basic to interface with com....



ps: very cool dev.... IMPRESSIVE!

_________________
Joyce Jamce


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 11th, 2008, 9:48 pm 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
1000 thanks for 1000 max hotkeys :D
Code:
chars := "abcdefghijklmnopqrstuvwxyz0123456789"
Loop, Parse, chars
{
   char1 := A_LoopField
   Loop, Parse, chars
   {
      If (char1 = A_LoopField)
         continue
      SetTimer, ExitApp, -2000
      Hotkey, %char1% & %A_LoopField%, Test
      count++
      ToolTip % "Creating Hotkeys`nLast hotkey " char1 " & " A_LoopField "`nTotal created: " count " hotkeys."

   }
}
Test:
Return
ExitApp:
ExitApp

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


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 16th, 2008, 6:01 pm 
I would like to ask a simple question – Would a file that is converted from .ahk to .exe also run faster by upgrading to the new Beta version pre-v1.0.48 or it would have no effect on compiled exe files in terms of speed?

Also if I were to upgrade to the Beta version pre-v1.0.48, must I rename the downloaded file as Autohotkey.exe or leave the filename as AutoHotkey-Pre-1.0.48-new2.exe


Top
  
Reply with quote  
 Post subject:
PostPosted: December 16th, 2008, 10:39 pm 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7502
Location: Australia
In order to compile a script with the beta, you would need an AutoHotkeySC.bin based on beta source code.

You do not need to rename the exe.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 16th, 2008, 10:45 pm 
Offline

Joined: February 14th, 2005, 4:05 pm
Posts: 4710
Location: Boulder, CO
Lexikos, could you post such an AutoHotkeySC.bin? It would be very nice to provide the speedups to people, who don't have AHK installed.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 16th, 2008, 10:48 pm 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7502
Location: Australia
Only Chris has the beta source code, afaik.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 16th, 2008, 10:49 pm 
Offline

Joined: November 24th, 2005, 8:16 am
Posts: 851
Judging by the lack of bug reports for the beta, it may be safe to assume that official release is coming soon.

_________________
Sector-Seven - Freeware tools built with AutoHotkey


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 20th, 2008, 3:06 pm 
Offline

Joined: August 12th, 2008, 10:13 pm
Posts: 16
A question:

"To achieve full benefit we should avoid setformat."

If we use setformat the speed will be the same, slower or still a bit faster than before?


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 129 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6 ... 9  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot 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