Page 1 of 1

Keep search term in browser search box.

Posted: 18 Nov 2019
by Namyo85
Hello, haven't posted on this forum for a long time. There's many reasons for this including becoming disillusioned with all things 'Reason' including this site, that said, a lot of that was due to how I responded to posts on here and how I felt about Reasons limitations. I have to take some responsibility for 'how things were'. I also had some serious problems to solve in my life which I'm getting on top of now, I'm winning basically and I'm back with a more positive attitude. Have to say despite not posting I have been visiting from time to time and reading posts on here, probably won't post too often but it's good to be back. :puf_smile:

Anyway, to the point. I want to suggest that Reasons search box retains the search term when switching between 'Instruments' Effects' and 'Utilities'. It disappears each time which is annoying, ok I can copy the word and paste it in but that's still a drag. I don't know if it's been fixed in version 11, I'm still on 9.5. Thanks guys.

Re: Keep search term in browser search box.

Posted: 18 Nov 2019
by diminished
You posted here before my time, but welcome back!

The search box clearing itself when switching categories is probably on top of my list of the things most annoying in Reason.

Re: Keep search term in browser search box.

Posted: 18 Nov 2019
by xboix
diminished wrote:
18 Nov 2019
...most annoying in Reason.
I'd expand that to include the whole search thing in general. Why can't they catalogue my refills and sounds folders and give me a sensible search speed?

Re: Keep search term in browser search box.

Posted: 18 Nov 2019
by Oquasec
I feel like reason search speed is fast since it scans folders in realtime.
like a 35gb library or something.

Re: Keep search term in browser search box.

Posted: 18 Nov 2019
by diminished
It seems like the missing sound search goes through each item in a folder and compares it to the search string one by one.. Matlab is faster..

Yeah alright. It's the whole shitty browser on top of that list.

Re: Keep search term in browser search box.

Posted: 18 Nov 2019
by Namyo85
Windows 7's own search works at light speed in comparison. I often search for missing samples with W7 then navigate to the folder in Reasons browser then tell it to look there. What I find bizarre is if you direct the search one folder up, Reason won't search that folder then the subfolder which the sample is in, it starts from the top and 3 weeks go by before it finds the sound. :-?

Re: Keep search term in browser search box.

Posted: 18 Nov 2019
by Oquasec
Is that a windows thing or a reason thing?

Re: Keep search term in browser search box.

Posted: 18 Nov 2019
by Namyo85
Definitely a Reason issue. So many users report the browsers slow speed amongst other things.

Re: Keep search term in browser search box.

Posted: 03 Nov 2023
by tobypearce
diminished wrote:
18 Nov 2019
You posted here before my time, but welcome back!

The search box clearing itself when switching categories is probably on top of my list of the things most annoying in Reason.
*Bump*
I often find myself entering a search term, *then* realising that I'm in instruments not effects (or visa versa). When I change this, the search string I've entered disappears and I have to type it again. It's frustrating.
Please can this be changed?

Re: Keep search term in browser search box.

Posted: 03 Nov 2023
by luckygreen
I'm on Windows and I have to say there are many crappy search algorithms. The file search in Windows OS ist one of them: uses lots of resources and gives bad results. Does anyone else use the free software "Voidtools Everything"? It's a blessing and pretty much the opposite of Windows file search. Unbelievably fast und uses as good as no resources. I guess the code would run on a 20 year old calculator with no issues indexing a 2TB drive in less than two minutes.

That is to say: Dear Propellerheads .. I mean .. dear Reason Studios Reason people with lots of reasoning, please google "Voidtools Everything", contact the developer and ask if he could tell you one or two secrets about coding a proper search function. Then implement. That'd be awesome. :thumbs_up:

Re: Keep search term in browser search box.

Posted: 03 Nov 2023
by PhillipOrdonez
Please make it so it remains on search box, reason studios!

Re: Keep search term in browser search box.

Posted: 04 Nov 2023
by robussc
This is the kind of workflow thing that is incredibly easy to code, yet makes quite a difference to users.

Re: Keep search term in browser search box.

Posted: 05 Nov 2023
by Heigen5
I agree on the suggestion, - I find it annoying too. By the way, the search is based on the pre-search whereas Reason collects data i.e. indexes all the locations and their content, so next time it doesn't need to search anymore again, that's why it became so fast. This was actually suggested by me. It is a day and night in the speedwise now.

Re: Keep search term in browser search box.

Posted: 05 Nov 2023
by zebbleganubi
this will fix it if you dont mind installing autohotkey. just paste the code into a text file and save it as "reason browser fix.ahk" or whatever, then double click the file to run it. it checks the search box before and after every mouse click and then and adds the text back in if its missing

Code: Select all

#noEnv
#persistent
#singleInstance, force
sendMode, input
setBatchLines, -1

hotkey, ifWinActive, ahk_class IglooDocumentWindow
hotkey, LButton, left_click_down
hotkey, LButton up, left_click_up

return ; end of auto-execute ---------------------------------------------------



left_click_down:
search_text := ""                 ; reset variable
controlGetText, output, Edit1, a  ; check search box
if (output != "")                 ; if its not empty
    search_text := output

send {LButton Down}

controlGetText, output, Edit1, a        ; check again after click
if (output = "" and search_text != "")  ; if its now empty
    controlSetText, Edit1, % search_text, a
return


left_click_up:
send {LButton up}
return

Re: Keep search term in browser search box.

Posted: 06 Nov 2023
by antic604
As I said somewhere else "everywhere" should be the default search setting, so whatever you'd type in would be searched for in instruments, effects, utilities and players.

Re: Keep search term in browser search box.

Posted: 06 Nov 2023
by dan_g
zebbleganubi wrote:
05 Nov 2023
this will fix it if you dont mind installing autohotkey. just paste the code into a text file and save it as "reason browser fix.ahk" or whatever, then double click the file to run it. it checks the search box before and after every mouse click and then and adds the text back in if its missing

Code: Select all

#noEnv
#persistent
#singleInstance, force
sendMode, input
setBatchLines, -1

hotkey, ifWinActive, ahk_class IglooDocumentWindow
hotkey, LButton, left_click_down
hotkey, LButton up, left_click_up

return ; end of auto-execute ---------------------------------------------------



left_click_down:
search_text := ""                 ; reset variable
controlGetText, output, Edit1, a  ; check search box
if (output != "")                 ; if its not empty
    search_text := output

send {LButton Down}

controlGetText, output, Edit1, a        ; check again after click
if (output = "" and search_text != "")  ; if its now empty
    controlSetText, Edit1, % search_text, a
return


left_click_up:
send {LButton up}
return
sounds great will try it and icorporate it in my reason ahk script if you don't mind. i have a few helpfull snipets running and this will be a great addition.

also this gives me the idea to try to select "everywere" via ahk everytime a project gets opened.

Re: Keep search term in browser search box.

Posted: 06 Nov 2023
by zebbleganubi
dan_g wrote:
06 Nov 2023
sounds great will try it and icorporate it in my reason ahk script if you don't mind. i have a few helpfull snipets running and this will be a great addition.
dont mind at all!
actually i just added in a bit to send the enter key after the text is added back in, so the search is run again

Code: Select all

#noEnv
#persistent
#singleInstance, force
sendMode, input
setBatchLines, -1

hotkey, ifWinActive, ahk_class IglooDocumentWindow
hotkey, LButton, left_click_down
hotkey, LButton up, left_click_up

return ; end of auto-execute ---------------------------------------------------



left_click_down:
search_text := ""                 ; reset variable
controlGetText, output, Edit1, a  ; check search box
if (output != "")                 ; if its not empty
    search_text := output

send {LButton Down}

controlGetText, output, Edit1, a        ; check again after click
if (output = "" and search_text != "")  ; if its now empty
    {
    controlSetText, Edit1, % search_text, a
    controlSend, Edit1, {enter}, a
    }
return


left_click_up:
send {LButton up}
return
dan_g wrote:
06 Nov 2023
also this gives me the idea to try to select "everywere" via ahk everytime a project gets opened.
do you mean making it search everywhere in the browser?

Re: Keep search term in browser search box.

Posted: 07 Nov 2023
by dan_g
zebbleganubi wrote:
06 Nov 2023

do you mean making it search everywhere in the browser?
yes. so its automatically set to "everywhere" wenn starting up. (as it should be with a setting in the preferences :P)