Messages - Maestr0 [ switch to compact view ]

Pages: prev1 2 3 4 [5] 6next
21
N.A.N.Y. 2019 / Re: NANY 2019: Shorthand 3_2
« on: January 06, 2019, 09:20 AM »
I downloaded the 3.2.0.27 version and tried to execute it. That experience warranted the following suggestions:
- the content of the 'start.bat' file contains / as folder separator. That didn't fly on this version of Windows (10.0.16299 Enterprise edition), had to be \.
- the content of the 'start.bat' file could be improved upon:
    @ECHO OFF

    SET ShortHandFolder=%~dp0
    START %ShortHandFolder%app\AHKv2_x32.exe %ShortHandFolder%shorthand3_ahk2.ahk
    SET ShortHandFolder=

- Now the folder you executed the script in, is captured and there is no way for Windows to get confused about where to look for files. The last line is there to clean up the content of the variable and emptying variables causes them to be removed from memory.   
- Do not use quotes |(in the START line) if AHK has never been installed on the system. Windows 10 will ask you which application it needs to use to execute the ahk script (even though that is clearly specified).
  (caveat: I never use folder names with spaces in it. Not in file names either if I can help it.)
- All my portable applications are stored in a separate folder not located on the C:\ partition. Same as my data. I'm weird that way. So I had to add these partitions to the ini file myself. Maybe I overlooked things, but I didn't find an option to add those partitions in the GUI. Not that big of a deal though.

After these changes it did work as expected. So thanks for a nice piece of software.

Thank you, I will investigate and fix it where I can. Comments and feedback are much appreciated!

update
For testing purposes, I made sure my folder has spaces in it. Your batch file suggestion therefore did not work as it was stated. I've replaced it with the following:
@echo OFF

SET ShortHandFolder=%~dp0
START "" "%ShortHandFolder%app\AHKv2_x32.exe" "%ShortHandFolder%shorthand3_ahk2.ahk"
SET ShortHandFolder=

I've tried renaming the extension to one that has no associated programs (.ahk3), and the batch-script worked. Maybe I misunderstood your remark regarding the use of quotes in the start line?

My OS is on a separate partition, as are my programs and my files/scripts.

Can you elaborate what you mean when you had to "add those partitions to the ini file"?

22
N.A.N.Y. 2019 / Re: NANY 2019: AHK Script Center
« on: December 30, 2018, 09:22 AM »
For my purposes, I will create a Setup.exe for the Mega Pack that creates a proper shortcut to run AutoHotkey.exe and AHK Script Center.ahk in whatever folder the user specifies. I have just left that static shortcut in there for now that can easily be updated.

You could have the installer to check the registry if there is a link to the .ahk file and only download if it hasn't been registered yet.

23
Living Room / Re: snipping tool with image editor
« on: December 23, 2018, 08:30 AM »
I've used MiniCap for years and years. Great little tool.
MiniCap.exe -captureregselect -clipimage -exit
for the win :D

24
Screenshot Captor / Re: Google Drive Option
« on: December 23, 2018, 07:34 AM »
Alternatively, you can use dropbox and imgur.com.

The benefit of dropbox is that it could upload files automatically.

Imgur has an API which you could use. Examples of that you can see here: https://help.imgur.com/hc/en-us/articles/209592766-Tools-for-Imgur


25
N.A.N.Y. 2019 / Re: NANY 2019: Shorthand 3_2
« on: December 22, 2018, 08:11 AM »
Interesting. I'll test this out when I have more time.

In the meantime, could you make a list of some ways in which Shorthand 3_2 differens from FARR, apart from using Everything as the underlying file search engine?

Ah, I'd need to look at FARR again, it's literally been years since I ran it last.

Comparing the options, there is a lot of similar things, but FARR is currently more customizable.
Having said that, Shorthand 3_2 is open source (aside from the included .exe files), whereas FARR is not.

Pages: prev1 2 3 4 [5] 6next
Go to full version