Messages - Nod5 [ switch to compact view ]

Pages: prev1 2 3 4 [5] 6 7 8 9 10 ... 234next
21
BTW @mouser it seems chaining setfocus after the appcapresults or fileresults commands doesn't work. For example neither of these
appcapresults "C:\Program Files\AutoHotkey\AutoHotkey.exe" C:\folder\a.ahk ;;; setfocus mainpanel
fileresults C:\folder\a.txt ;;; sleep 1000 ;;; setfocus mainpanel
gets focus to the imported results list.
It would be useful to have focus at the first results list item in this case.

22
appcapresults "C:\Program Files\AutoHotkey\AutoHotkey.exe" C:\folder\a.ahk
Thank you, that indeed works! For repeat use we can shorten it by adding a user variable to FARR settings
ahk=C:\Program Files\AutoHotkey\AutoHotkey.exe
and then use this alias result line
appcapresult "%uservar.ahk%" C:\folder\a.ahk

23
Great work mouser! I bet this will be very useful to lots of people doing live streams. From watching the videos above, I like the smooth transitions and especially the tacticle aspect of controlling the camera with two small physical objects instead of fiddling with a keyboard or other controls on the side.

24
General Software Discussion / Re: Split a video in n equal parts.
« on: September 16, 2022, 03:21 AM »
this is the one, free and awesome...

https://github.com/mifi/lossless-cut
Yeah thanks for that find! I like that it can show the underlying ffmpeg calls - handy if you want to add some step or transformation currently not in the app.

25
Find And Run Robot / appcap and appcapresults not working for .ahk files
« on: September 12, 2022, 06:11 AM »
appcap and appcapresults do not work for AutoHotkey .ahk files, but they work if we compile the same script to .exe

To reproduce this issue:
1. Save this script as C:\folder\a.ahk
Code: Text [Select]
  1. FileAppend, C:\Windows\System32\mspaint.exe, * ;StdOut
2. right click .ahk and compile, to get a.exe
2. Create new FARR alias
alias name: appcaptest
alias results:
Code: Text [Select]
  1. .ahk test | appcapresults C:\folder\a.ahk
  2. .exe test | appcapresults C:\folder\a.exe
3. try both alias results

Expected effect: both alias results should transform the result list to a link to Paint
Actual effect: ".ahk test" does nothing

This issue has existed for a long time (maybe since appcap was first introduced?) but would be nice to see it fixed (if possible and easy) or to see if anyone knows a workaround on the AutoHotkey side, without compiling the script that is. Mouser, does appcap try to use any file passed to it (and the issue is rather something in Windows) or is there a whitelist in FARR based on extensions or something else?

Pages: prev1 2 3 4 [5] 6 7 8 9 10 ... 234next
Go to full version