Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterHello Just,
Are you using the latest version of EmEditor? You should see the Start Window where you can click the Restore Previous Workspace button.
If this doesn’t work, please make sure the “Save Only” is selected in Automatic Workspace drop-down list in the Window tab of the Customize dialog box. You can also select “Save, Restore and Keep Undo Information” in the same drop-down list if you prefer.
Thanks,
Yutaka Emura
KeymasterHello Just,
1) You can assign a shortcut to an external tool. Please go to Keymap on the Help, or configuration properties -> Keyboard tab, and select an external tool to assign a shortcut.
2) You can’t upload images to the forum, but you can upload to another website and link to the external image using the IMG tag.
Thanks,
April 28, 2016 at 4:00 pm in reply to: Arrow keys stop working in editor while "External tool" is executing #20802Yutaka Emura
KeymasterHi LifeTimer,
What is the external tool that causes the problem? Is it a console application? Can you let me know an example that causes the issue?
Does changing the external tool options (for example, “Use Output Bar”) help?
Thank you,
Yutaka Emura
KeymasterHello Paul,
As for 2), I will fix ths issue on the next version.
Thank you,
Yutaka Emura
KeymasterHello,
To delete a file, you can call:
function DeleteFile(filespec) { var fso; fso = new ActiveXObject("Scripting.FileSystemObject"); fso.DeleteFile(filespec); }
See: https://msdn.microsoft.com/en-us/library/thx0f315.aspx
However, I will add an ability to query the filter items in macros.
Thanks,
Yutaka Emura
KeymasterExportFilter shouldn’t overwrite an existing file if the filter is empty, instead it should return an error. I will fix ExportFilter on the next version. I also might consider adding more methods or properties to inspect the filter items.
Thanks!
Yutaka Emura
KeymasterI added information about JSON to the History page of the Help, the latest feature page of the website, and I posted a new blog about the feature.
As for email notifications, I didn’t change anything, but we constantly update WordPress, so it is possible that there might have been glitches in some version of WordPress.
Thanks!
Yutaka Emura
KeymasterHello LifeTimer,
It will take some time until we can release a new version, so I built a test version for you:
Here is an example:
sTsvFile = "E:\\Test\\filter.tsv"; // export the current filter to a TSV file. document.ExportFilter( sTsvFile ); // import the TSV file and apply the filter nCount = document.ImportFilter( sTsvFile );
April 20, 2016 at 4:00 pm in reply to: Does Javascript macros in EmEditor only support a subset of Javascript standard? #20779Yutaka Emura
KeymasterEmEditor v15.9.0 supports the JSON object. Here is an example:
var text = '{ "employees" : [' + '{ "firstName":"John" , "lastName":"Doe" },' + '{ "firstName":"Anna" , "lastName":"Smith" },' + '{ "firstName":"Peter" , "lastName":"Jones" } ]}'; var obj = JSON.parse(text); alert( obj.employees[1].firstName + " " + obj.employees[1].lastName );
I hope this helps. Thanks for your inputs!
Yutaka Emura
KeymasterHello,
Actually, the JSON object is already defined on EmEditor v15.9.0.
Can you try on your computer, and see if there any issues?
Thanks!
Yutaka Emura
KeymasterHello,
You can go to configuration properties, the Display tab, select Matched parentheses/brackets, and then change the text color or background color.
I am not sure why you didn’t receive notifications. I would subscribe the RSS feeds for the entire forums.
Thank you,
April 20, 2016 at 8:22 am in reply to: Shortcut for editing current cell in Cell Selection Mode? #20770Yutaka Emura
KeymasterHello,
You can use the ENTER key to edit the current cell, but you can also assign the “Edit Cell” command to F2. The F2 key had been assigned to another command, so I didn’t want to change the current key assignments.
Thank you,
Yutaka Emura
KeymasterAfter unpin the EmEditor icon from the Taskbar, can you right-click on the EmEditor icon on the Start menu, and add it to the Taskbar? If you are using Windows 10, you can right-click the EmEditor icon on the Start menu, click “More”, and then “Pin to taskbar”.
Thank you,
Yutaka Emura
KeymasterIs it only the Taskbar Icon that has the 16-color effect? Are other EmEditor shortcut icons (desktop and start menu) OK? Since the Taskbar icon was not updated by the EmEditor installer, you might want to unpin the icon from Taskbar, and then pin again when EmEditor is running. Can you try?
Thank you,
Yutaka Emura
KeymasterThanks for the function proposals. These two function prototypes are helpful. Do you want to export filters to TSV files?
Yutaka Emura
KeymasterFrom the screenshot you sent me, the EmEditor icon used is 16 colors. Do you use any reduced color mode in your Windows Personalization?
Thanks,
Yutaka Emura
KeymasterHello,
Can you just select a previously used filter by clicking the v button (or pressing the DOWN key) on the drop-down list box in the Filter toolbar?
Yutaka Emura
KeymasterPlease confirm, are you using 100% in the Windows Display Settings? You can also send me a screenshot at tech at emurasoft.com.
Thanks!
Yutaka Emura
KeymasterHello LifeTimer,
Just to be clear, do you want to record exporting the current filter as a macro?
Yutaka Emura
KeymasterHello Paul,
I understand. I will think about that in future versions.
Thanks!
Yutaka Emura
KeymasterHello LifeTimer,
Did you change the Windows Display settings, “Change the size of text, apps, and other items” (DPI)? If this is not 100%, you might want to revert to 100% and see if you can resolve the issue.
Thanks!
Yutaka Emura
KeymasterHello Paul,
In case you are not aware of already, you can use the Search plug-in to do the same.
Thank you!
Yutaka Emura
KeymasterHello LTT,
“Unspecified error” is a correct behavior. If you want the script to continue even if the Unspecified error appears, you can surround the code with try … catch statement.
For example:
try { document.selection.Find( "abc", eeFindNext | eeFindAround ); } catch ( e ) { alert( "dialog box dismissed" ); } alert( "end of macro" );
I hope this helps.
Thanks!April 14, 2016 at 11:10 am in reply to: Down key in Quick Launch calls Start Window if in new document #20725Yutaka Emura
KeymasterHello Paul,
I will fix this bug on beta 4 as well.
Thank you!
Yutaka Emura
KeymasterHello Paul,
I reproduced the crash with Onigmo engine. I will fix this issue on beta 4.
Thank you!
- AuthorPosts