You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use TE portably both at home and work. I have all my file associations set up trough Tools > Options > Menus > Default, and it works quite well, no issues there. Some times when I move computers, I prefer to momentarily use an installed app rather than the portable one.
Currently I just go to the menu and replace whatever file extension filter with something like -----, but this is cumbersome and destructive, and one has to manually revert it later.
Is there an easy way to disable, toggle off or override a file association set up through the method above without totally removing it?
Maybe through javascript set up a file association with some if clause? Maybe make it machine name dependent, or perhaps check the existence of an exe file. Say something along the lines of pseudocode:
if computer.name='WORK_COMPUTER' c:/program Files/Company/Application.exe else ..\Portable\App.exe
or
if file.exists'C:/program Files/Company/Application.exe' else ..\Portable\App.exe
The text was updated successfully, but these errors were encountered:
I use TE portably both at home and work. I have all my file associations set up trough Tools > Options > Menus > Default, and it works quite well, no issues there. Some times when I move computers, I prefer to momentarily use an installed app rather than the portable one.
Currently I just go to the menu and replace whatever file extension filter with something like
-----
, but this is cumbersome and destructive, and one has to manually revert it later.Is there an easy way to disable, toggle off or override a file association set up through the method above without totally removing it?
Maybe through javascript set up a file association with some
if
clause? Maybe make it machine name dependent, or perhaps check the existence of an exe file. Say something along the lines of pseudocode:if computer.name='WORK_COMPUTER' c:/program Files/Company/Application.exe else ..\Portable\App.exe
or
if file.exists'C:/program Files/Company/Application.exe' else ..\Portable\App.exe
The text was updated successfully, but these errors were encountered: