Hello,
all of a sudden, double clickig a .docx file. I get a "Stepping through a scrip" box, on top saying
File: (Internal)
Acript: (Untitled)
#1053;
and in the lower half
Miscellaneous |File Operations | Open Selected Item(s) with OS Default
with docx, pdf, zip, hitting Continue opens the file ok. With txt and no-extension files, there is more and it can't be opened, although I _can do it from the Custom file associations menu.
Came out of nowhere ...
Started in ver. 19.0, upgrading to 19.2 (I use the no-install zip) did not help
What can I do to fix it? What could I have done to cause this, anyway?
Thanks and regards Emil
Double click jumps into script instead of opening the file
Re: Double click jumps into script instead of opening the file
So show your CFA defintions?
One of my scripts helped you out? Please donate via Paypal
Re: Double click jumps into script instead of opening the file
Here they are; but if you needed the scripts behind them or those # codes, I don't know how to get themhighend wrote:So show your CFA defintions?

The thing is, I haven't done anything inside XY that I know of, strange.
Regards Emil
- Attachments
-
- CFA.png (124.9 KiB) Viewed 1482 times
Re: Double click jumps into script instead of opening the file
Now I also find that my button for switching left-right panes does not work, I have to step through the entire script before they switch. Here's that script, from the Edit window:highend wrote:So show your CFA defintions?
--------
"Number from 1" rename "b", <#01>, "p"
"Number from 0" rename "b", <#000>, "p"
"Rename EXIF Date Created" rename "b", "<dateexif yyyy-mm-dd hh-mm-ss>", "p"
"Rename Date Created" rename "b", "<datec yyyy-mm-dd hh-mm-ss>", "p"
"Rename Date Modified" rename "b", "<datem yyyy-mm-dd hh-mm-ss>", "p"
"Prefix Text" $string = input("Enter the text to prefix:"); rename "b", "$string*", "p"
"Search and Replace" $find = input("Enter the text to be replaced:"); $replace = input("Enter the text to be inserted:"); msg "Replace: ".$find." with: ".$replace; rename "s", "$find/$replace"
-
"Append created date" rename "b", '*-<datec yyyy-mm-dd>', "p"
-
"Swap Pane Locations"
$pA = "<curpath>";
Focus("PI");
$pI = "<curpath>";
Goto("$pA");
Focus("PI");
Goto("$pI");
Focus("P1")
-----
Is there a directory of these things that could have gotten corrupted? I got everything customized since years ago, would hate do have to re-do it, because, naturally, I have no idea how I accomplished those things.

Re: Double click jumps into script instead of opening the file
You have turned on Step Mode, disable it with this menu item:
Scripting | Step Mode
Or this shortcut key: (Ctrl+Alt+S)
It should fix both issues.
Scripting | Step Mode
Or this shortcut key: (Ctrl+Alt+S)
It should fix both issues.
Re: Double click jumps into script instead of opening the file
BLESS YOU!jupe wrote:You have turned on Step Mode, disable it with this menu item:
Scripting | Step Mode
Or this shortcut key: (Ctrl+Alt+S)
It should fix both issues.

Thanks a million!!!!
Best regards Emil