AutoHotkey Community

It is currently May 27th, 2012, 11:50 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 156 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11  Next
Author Message
PostPosted: January 27th, 2012, 11:57 pm 
if i run this script

info := "AHK Version:`t" A_AhkVersion
. "`nUnicode:`t`t" (A_IsUnicode ? "Yes " ((A_PtrSize=8) ? "(64-bit)" : "(32-bit)") : "No")
. "`nOperating System:`t" (!A_OSVersion ? A_OSType : A_OSVersion)
. "`nAdmin Rights:`t" (A_IsAdmin ? "Yes" : "No")
MsgBox, 68, Support Information, %info%`n`nWould you like to copy this information to the Clipboard?
IfMsgBox Yes
{
Clipboard := info
ClipWait
MsgBox, The information was sent to the Clipboard.
}
return

as an AHK i get

AHK Version: 1.1.05.06
Unicode: Yes (32-bit)
Operating System: WIN_7
Admin Rights: Yes


under Live Code i get this


AHK Version: 1.1.00.00
Unicode: No
Operating System: WIN_7
Admin Rights: Yes


can you help me fix toolkit to use my installed version of ahk?

i put the zip file inside teh ahk folder so the ahk toolkit script is in AutoHoktkey folder and the lib and res folders are in there as well


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 28th, 2012, 12:09 am 
Offline

Joined: February 19th, 2010, 8:07 pm
Posts: 615
ok I am going to give you a manual work around because im still working on the Preferences gui (which is where you will be able to do this easily)

open the conf.xml file that is right next to the AHK-TK script.

look for the "Live Code" tag and add the path's to each version of AHK you want working, this is how i have it in my case:

Image

then you will have the following options enabled on the live code tab:

Image

you will then be able to choose which version will run it.

again all of this will be easier soon on the Preferences Gui but i havent finished yet :P

_________________
Main Project: AutoHotkey Toolkit
Unless specified otherwise all my code is written for the latest Autohotkey L Unicode version.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: folder
PostPosted: January 28th, 2012, 12:33 am 
my folder needs to be based on the users folder

i.e. for me its

c:\users\mjhindma\documents\Utils\AutoHotKey\AutoHotKey.exe

for others i give this to its different can i use something for this? i tried %A_UserName% but its not available it trasnlates literally


Report this post
Top
  
Reply with quote  
PostPosted: January 28th, 2012, 12:40 am 
Offline

Joined: August 30th, 2011, 9:50 pm
Posts: 17
Location: United States
Can you put this in the release version?

after getting the ahkpath i put in this line

Thx Uberi:

StringReplace, ahkpath, ahkpath, `%A_UserName`%, %A_UserName%, All


Report this post
Top
 Profile  
Reply with quote  
 Post subject: another suggestion
PostPosted: January 28th, 2012, 12:56 am 
Offline

Joined: August 30th, 2011, 9:50 pm
Posts: 17
Location: United States
for the pastebin can you but a box for IRC like the autohotkey pastebin page has?

also when i do the pastebin to autohotkey.net it doesn't show anything or paste to IRC where does it go?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 28th, 2012, 11:19 am 
Offline

Joined: February 19th, 2010, 8:07 pm
Posts: 615
As soon as you put the privacy on "Public" the notification should be sent to IRC.

at the top corner you will see a tooltip with the link which is automatically copied to the clipboard... so basically as soon as you see that tooltip you can just simply Ctrl + V and the link will be pasted wherever you want.

_________________
Main Project: AutoHotkey Toolkit
Unless specified otherwise all my code is written for the latest Autohotkey L Unicode version.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 28th, 2012, 3:30 pm 
Offline

Joined: February 19th, 2010, 8:07 pm
Posts: 615
@Guest

you might want to do this:

Code:
%A_MyDocuments%\Utils\AutoHotKey\AutoHotKey.exe

_________________
Main Project: AutoHotkey Toolkit
Unless specified otherwise all my code is written for the latest Autohotkey L Unicode version.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: January 30th, 2012, 5:47 pm 
Offline

Joined: August 30th, 2011, 9:50 pm
Posts: 17
Location: United States
I use that folder because it will be forwards compatible. My Documents wont be around much longer after windows 7 :P its only a link as it is now for compatability.

The Guest messages were me i wasnt logged in for some reason haha

also the pastebin def doesnt work on my machine...

Im running as admin

windows 7 x64

unicode _L install

it defaults to Autohotkey and public... i put in my username and a desc. and click upload the window goes away and nothing every happens my clipboard never changes and im always in #ahk and it has never worked.. (i have tried with large and small i.e. 5 line pastes)

is it going to another IRC Channel?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 30th, 2012, 6:07 pm 
Offline

Joined: February 19th, 2010, 8:07 pm
Posts: 615
the reason why i suggested "%a_mydocuments%" its because it doesnt really matter in which OS you are it is going to point to the current implementation of the "my documents" folder

in 7/Vista any other it would point to c:\users\USER\documents
in XP it would be c:\Documents and Settings\USER\My Documents\

or so i am assuming :P

anyways, i am not sure what is wrong with the pastebin... first of all tell me the version of AHK-TK that you are using, because i updated it (several times now) and latest fixes have to do with the pastebin function so make sure you have the latest.

if it still doesnt work it might be a problem with the "HttpRequest" function that im using to send the PB, if you are in the #AHK channel we can try to work it out together because im using WinXP and for me its working.

-- EDIT
Quote:
HttpRequest Version: 2.41 - Tested compatible with AHK v1.0.48.05 and AHK v1.1.00.00 (Unicode); Presumed compatible with later versions, ANSI and x64.


I would say its mostly a bug with that function on a x64 environment since he hasnt really tested it there :(

_________________
Main Project: AutoHotkey Toolkit
Unless specified otherwise all my code is written for the latest Autohotkey L Unicode version.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Stuff
PostPosted: January 30th, 2012, 9:52 pm 
Offline

Joined: August 30th, 2011, 9:50 pm
Posts: 17
Location: United States
It has the small popup in the top left corder that says

copied to http://www.autohotkey.net/paste/

and changes my clipboard to that... but dosnt put my clipboard to the specific post nor does it put it in the IRC channel at all

I am behind a corperate firewall with a proxy which could be whats going on i suppose if your not taking into account the system default proxy settings when doing an http request.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 30th, 2012, 9:54 pm 
Offline

Joined: February 19th, 2010, 8:07 pm
Posts: 615
well that might be a very big reason, since no, i do not check for proxies or intend to do that at the moment.

did you try with pastebin.com? (if posted in pastebin.com it will not notify the IRC channel but the clipboard should have the paste url)

_________________
Main Project: AutoHotkey Toolkit
Unless specified otherwise all my code is written for the latest Autohotkey L Unicode version.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 3rd, 2012, 9:22 am 
Offline

Joined: January 23rd, 2012, 9:13 am
Posts: 18
Hi, I'm a first time user of your toolkit. First of all, thanks!
Secondly, I started with the compiled version and got an error immediately after setting the first-time preferences. It's simply a packaging error, but it prevents using the program.
You forgot to add res\ahkl.bak to the compiled version. This is the error message:
Quote:
Error: Failed attempt to launch program or document:
Action: <res\ahkl.bak C:\Users\apo\AppData\Local\Temp\hslauncher.code>
Params: <>

Specifically: The system cannot find the file specified.


Line#
---> 2868: Run,"res\ahkl.bak " a_temp "\hslauncher.code",,,hslPID

The current thread will exit.


I fixed it by copying said file from the source archive.
Version: AHK-ToolKit-v0.6.2.1-compiled.zip


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 3rd, 2012, 3:17 pm 
Offline

Joined: February 19th, 2010, 8:07 pm
Posts: 615
thank you for pointing that one out, it will be fixed soon.

_________________
Main Project: AutoHotkey Toolkit
Unless specified otherwise all my code is written for the latest Autohotkey L Unicode version.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 8th, 2012, 10:32 pm 
Offline

Joined: February 19th, 2010, 8:07 pm
Posts: 615
Script Updated!

_________________
Main Project: AutoHotkey Toolkit
Unless specified otherwise all my code is written for the latest Autohotkey L Unicode version.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: February 24th, 2012, 3:21 am 
I just downloaded AHK Toolkit 0.6.3.1 and when first run it informs me that there is an upgrade to 0.6.4 and do I want to upgrade. When I click Yes a Select File window comes up with a blank filename. When I watched long enough I notice a file get downloaded, so on a guess I put in a filename and then was told to run the downloaded file. At the least I would expect the filename to be plugged in for me.

So, after playing around a little, I tried the export and since the file output was standard AHK I decided to try importing some of my stuff. The import doesn't appear to work. So, I tried importing the exact file that was exported and while the import window reports success, the imported entries do not appear in the main window.

I am using AHK-L version v1.1.06.02


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 156 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Google Feedfetcher, rrhuffy, Yahoo [Bot] and 37 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