waffeln wrote: Fri Sep 30, 2022 7:10 pm
Respectfully bumping so that NotNull might see this
You got my attention

(thought this was all about the dw variant ..)
Is this your question?
Also JTF doesn't select the file in the explorer window when i select it (pressing Enter or double click) after the Everything window closes. It only jumps to the folder but doesn't select or fill out anything. Could this be a bug?
In that case:
Could be a timing issue, indeed. Are you opening a remote folder that opens slowly or has lots of files/folders in it? (meaning enumerating all files/folder takes a while and Explorer takes more time than usual to "draw" all this on the screen).
As you are already familiar with AHK, you could test the following :
In the JumpToFolder.ahk code (version 1.0.8), change line 981 from sleep 100 to
sleep 1000
This will wait a full second (1000 milliseconds) before the file is selected.
Does the file get selected in this case?
(In the end, a value of sleep 250 should suffice, I suspect).
Code: Select all
if ( _thisID = _checkID )
{
; Go to folder
$Exp.Navigate( _thisFOLDER )
; Select the file (if defined)
If ( _thisFILE )
{
sleep 1000
_allfiles := $Exp.Document.Folder.Items
$Exp.Document.SelectItem(_allfiles.Item(_thisFILE), 0x1D)
}
break
}
waffeln wrote: Sun Sep 11, 2022 5:08 pm
Hi, i'd like to ask if it's possible to pass further parameters to the JTF exe beyond "-jump" in order to fill the search field with dynamic data.
Dynamic data is not possible at the moment. Support for static data is already built-in:
In Everything, you can create a filter
JumpToFolder and that will automatically be used.
There is also a
start_everything ini-setting where you can provide specific start parametres to be used by Everything. But that is static too.
Off-topic:
"audio: Disclosure"
Disclosure, the band or the album by the Gathering or..?